61
TinyTV & Tiny Video Player / Re: Parameters for ffmpeg conversion
« Last post by RavenWorks on July 30, 2023, 02:51:42 PM »While I think of it, I might as well document that the other situation that sometimes stymies my ffmpeg conversions is trying to convert a video that completely *lacks* an audio track; I fix it by first running something like this on the input file:
to add an audio track of silence, and then running the typical tinytv ffmpeg command on this previous command's result.
Code: [Select]
ffmpeg -f lavfi -i anullsrc -i inputfile.mp4 -shortest -c:v copy -c:a aac outputfile.mp4
to add an audio track of silence, and then running the typical tinytv ffmpeg command on this previous command's result.