I have a future requirement to consecutively page number a pdf document assembled from many individual pdf files. Is there something that runs on FreeBSD that will handle this? I need to be able to specify the location of the page number on the page. In other words 'centre bottom, 1/2" above...
Hi
Heres how to extract the audio from a single video file
ffmpeg -i infile.mp4 -vn -c:a copy outfile.m4a
batch extract audio from video files
find -s . -type f -name "*.mp4" -exec sh -c \
'ffmpeg -i "${0}" -vn -c:a copy "${0%.*}.m4a"' \
"{}" \;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.