pandora_cut/README.txt

33 lines
912 B
Plaintext

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