|
|
|
|
|
by coisasdavida
297 days ago
|
|
Very useful! I'll bookmark that!
My most recent search to use with FFMPEG was to convert a folder of Sony videos to Prores. ChatGPT helped me with this one-liner:
for f in *.MTS; do ffmpeg -y -i "$f" -c:v prores_ks -profile:v 1 -vendor apl0 -pix_fmt yuv422p10le "proResLT_${f%.MTS}.mov"; done
Maybe having the option to create one liners like this, for different platforms, would be nice! |
|