Go to file
j d755d3afc4 edit2fcp 2014-02-24 18:19:00 +05:30
edl edit2fcp 2014-02-24 18:19:00 +05:30
README.txt edit2fcp 2014-02-24 18:19:00 +05:30
pandora_cut.py edit2fcp 2014-02-24 18:19:00 +05:30

README.txt

pandora_cut - export pan.do/ra edits into NLE formats

Suppported outputs:

    Final Cut Pro 7 (fcp)
    VLC             (m3u)
    Final Cut Pro X (planned)
    kdenlive        (planned)
    Pitivi          (planned)

Usage:

    pandora_cut [options] edit_url > output.xml

    pandora_cut --help for more information


== Final Cut Pro 7 ==

Final Cut Pro only supports videos with 23.97,29,97 or integers as framerates.
Its important to convert all videos to the framerate of the project before import.

In addition HD editing works best if mateiral is converted to ProRes.

FFmpeg cna be used to prepare most videos accordingly:

 $ ffmpeg -i input.mkv -vcodec prores -profile:v 2 -qscale:v 13 -vendor ap10 prores/output.mov

if material is not in the right framerate, i.e. conform to NTSC(29.97 fps):

 $ ffmpeg -i input.mkv -vcodec prores -r ntsc -profile:v 2 -qscale:v 13 -vendor ap10 prores/output.mov