I have been working hard all weekend, frequently staying up 20 hours before crashing in a heap for a short powernap, then back to work for another 20 hours. So much to do…
Unfortunately, it caught up with me. I was installing a new template on my web site and trying to custom write a few [...]
These are some useful FFMPEG commands I use quite often:
Copy the H.264 stream from an MTS file into a MOV file and discard the audio:
ffmpeg -i myfile.mts -vcodec copy -an -y myfile.mov
Re-encode a clip into a Quicktime MOV file using the MotionJPEG codec and discard any audio:
ffmpeg -i myfile.avi -vcodec mjpeg -b 76k -an -y [...]