Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ctsrc/ffmpeg-extract-clips-davinci-resolve-edl
Extract clips of audio and video from source files according to a DaVinci Resolve 16 exported EDL file, using ffmpeg
https://github.com/ctsrc/ffmpeg-extract-clips-davinci-resolve-edl
command-line-tool davinci-resolve edit-decision-list edl ffmpeg multimedia
Last synced: 12 days ago
JSON representation
Extract clips of audio and video from source files according to a DaVinci Resolve 16 exported EDL file, using ffmpeg
- Host: GitHub
- URL: https://github.com/ctsrc/ffmpeg-extract-clips-davinci-resolve-edl
- Owner: ctsrc
- License: isc
- Created: 2019-10-15T21:18:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T09:07:29.000Z (about 1 year ago)
- Last Synced: 2024-10-31T15:53:54.622Z (3 months ago)
- Topics: command-line-tool, davinci-resolve, edit-decision-list, edl, ffmpeg, multimedia
- Language: Rust
- Size: 13.7 KB
- Stars: 14
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# extract-clips
[![Crates.io](https://img.shields.io/crates/v/extract-clips.svg)](https://crates.io/crates/extract-clips)
Extract clips of audio and video from source files according to a
DaVinci Resolve 16 exported EDL file, using ffmpeg.## Usage
In DaVinci Resolve 16, go to *File* > *Export AAF, XML...* and then, in
the dialog that appears, select *EDL Files (\*.edl)*. Finally, press *Save*.Run `extract-clips` with the name of the EDL file as argument.
E.g.:
```bash
extract-clips "Timeline 1 (Resolve).edl"
```## DaVinci Resolve 16 exported EDL file format
EDL files exported by DaVinci Resolve 16 look like so:
```text
TITLE: Timeline 1
FCM: NON-DROP FRAME001 AX V C 00:00:00:00 00:00:01:24 01:00:00:00 01:00:01:24
* FROM CLIP NAME: IMG_2926.TRIM.mov002 AX V C 00:00:01:24 00:00:02:02 01:00:01:24 01:00:02:02
* FROM CLIP NAME: IMG_2926.TRIM.mov003 AX V C 00:00:02:02 00:00:02:18 01:00:02:02 01:00:02:18
* FROM CLIP NAME: IMG_2926.TRIM.mov004 AX V C 00:00:02:18 00:00:02:21 01:00:02:18 01:00:02:21
* FROM CLIP NAME: IMG_2926.TRIM.mov005 AX V C 00:00:02:21 00:00:02:25 01:00:02:21 01:00:02:25
* FROM CLIP NAME: IMG_2926.TRIM.mov006 AX V C 00:00:02:25 00:00:04:14 01:00:02:25 01:00:04:14
* FROM CLIP NAME: IMG_2926.TRIM.mov007 AX V C 00:00:04:14 00:00:04:23 01:00:04:14 01:00:04:23
* FROM CLIP NAME: IMG_2926.TRIM.mov008 AX V C 00:00:04:23 00:00:04:28 01:00:04:23 01:00:04:28
* FROM CLIP NAME: IMG_2926.TRIM.mov009 AX V C 00:00:04:28 00:00:05:03 01:00:04:28 01:00:05:03
* FROM CLIP NAME: IMG_2926.TRIM.mov010 AX V C 00:00:05:03 00:00:06:19 01:00:05:03 01:00:06:19
* FROM CLIP NAME: IMG_2926.TRIM.mov011 AX V C 00:00:06:19 00:00:07:00 01:00:06:19 01:00:07:00
* FROM CLIP NAME: IMG_2926.TRIM.mov012 AX V C 00:00:07:00 00:00:09:18 01:00:07:00 01:00:09:18
* FROM CLIP NAME: IMG_2926.TRIM.mov013 AX V C 00:00:09:18 00:00:09:25 01:00:09:18 01:00:09:25
* FROM CLIP NAME: IMG_2926.TRIM.mov014 AX V C 00:00:09:25 00:00:09:29 01:00:09:25 01:00:09:29
* FROM CLIP NAME: IMG_2926.TRIM.mov015 AX V C 00:00:09:29 00:00:11:14 01:00:09:29 01:00:11:14
* FROM CLIP NAME: IMG_2926.TRIM.mov```