On Wed, Feb 05, 2020 at 16:58:07 -0500, Mark Filipak wrote: > Is there anything in ffmpeg or ffprobe that will, for every frame in a > single VOB (or preferably, all VOBs in an entire TS: > 'VTS_xx_1.VOB'+'VTS_xx_2.VOB'+'VTS_xx_3.VOB'+...), list the following?
Assuming you have already found a filter which creates these metadata values (like idet in your previous thread), add the metadata filter to your filter chain: $ ffmpeg -i input -vf filter1,metadata=mode=print -f null - The metadata filter also has options to filter the output by key name, and to dump its output to file (or pipe:1, for that matter). Cheers, Moritz _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
