![]() | 1 | initial version |
Hi: ffmpeg and you don't need anything else.
For batch converting you can use something like
for file in *.mp4; do
ffmpeg -y -v quiet -i "$file" -target ntsc-dvd "$file".avi;
done
Adjusting your target or any other parameter as you need.
There