Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EDL Format not importing correctly with DaVinci Resolve 18.1.3 Build 8 #55

Open
adpextwindong opened this issue May 30, 2023 · 1 comment

Comments

@adpextwindong
Copy link

The current format out of the box:

001  START V     C        00:00:00:00 00:01:20:00 00:00:00:00 00:01:20:00
002        V     C        00:01:20:00 00:02:55:00 00:01:20:00 00:02:55:00
003        V     C        00:02:55:00 00:05:05:00 00:02:55:00 00:05:05:00

Seems to be missing CLIP# in the 2nd column for Da Vinci Resolve to correctly split as far as I can tell.

I was able to work around with this awk oneliner in the mean time.

awk -F ' ' '{if($2 != "START"){$2 =" CLIP"NR-1" V\t" } print $0 }'

Result:

001  START V     C        00:00:00:00 00:01:20:00 00:00:00:00 00:01:20:00
002  CLIP1 V	 C 00:01:20:00 00:02:55:00 00:01:20:00 00:02:55:00
003  CLIP2 V	 C 00:02:55:00 00:05:05:00 00:02:55:00 00:05:05:00
@MichaelTunnell
Copy link
Contributor

MichaelTunnell commented Jun 2, 2023

in my experience it also does not work in Resolve 18.5. I tested on free version and on Resolve Studio.

I also noticed that the label for a Marker is truncated in InfoWriter output but not when exported from Resolve so I'd prefer that option. I currently am outputing to txt simple data and then converted it to EDL afterwards.

The format that Resolve outputs is rather different than the current EDL output, here is a sample from 18.5:
Quick Note: DaVinci Resolve starts timestamps at 01:00:00:00 even though that means start of timeline, I am not sure why it starts with 01. (my research suggests a hollywood thing)

TITLE: test
FCM: NON-DROP FRAME

001 001      V     C        01:00:00:00 01:01:03:00 01:00:00:00 01:01:03:00
 |C:ResolveColorBlue |M:Start Segment |D:1

002 001      V     C        01:01:03:00 01:04:59:00 01:01:03:00 01:04:59:00
 |C:ResolveColorBlue |M:Edit segment |D:1

003 001      V     C        01:04:59:00 01:05:08:00 01:04:59:00 01:05:08:00
 |C:ResolveColorBlue |M:Start Segment |D:1

004 001      V     C        01:05:08:00 01:05:39:00 01:05:08:00 01:05:39:00
 |C:ResolveColorBlue |M:Switch to 4H |D:1

005 001      V     C        01:05:39:00 01:05:53:00 01:05:39:00 01:05:53:00
 |C:ResolveColorBlue |M:Switch to GFX |D:1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants