I'm probing a video file to get some basic information. For example, the following uses the show_entries flag to specify the necessary data.
> ffprobe -v error -show_entries format=size,duration:stream=codec_name,bit_rate video.mp4
I also need to get the TAG:rotate entry, but this does not working as the semicolon mixes with the syntax of the show_entries flag.
> ffprobe -v error -show_entries format=size,duration:stream=codec_name,bit_rate,TAG:rotate output.mp4
No match for section 'rotate'
Failed to set value 'format=size,duration:stream=codec_name,bit_rate,TAG:rotate' for option 'show_entries': Invalid argument
Is there a way to fix the syntax? The only other solution is not to specify the individual entries and just get all the data.