I'm working with HLS streams of MPEGTS that contains H264.
When I look at the HLS Playlist given by the server, it specifies that the codec is avc1.77.30,mp4a.40.2
Here's a snippet from the file
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1787760,CODECS="avc1.77.30,mp4a.40.2",RESOLUTION=640x360
Is there a way I can retrieve this information from ffmpeg
?
I found a question that was asked before How to determine video codec of a file with FFmpeg
But the closest I can seem to get to any of their outputs is h264
and not avc1.77.30
The playlist contains 7 MPEG-TS files, I've tried using ffprobe
on both the playlist file, as well as the individual video files, but they both seem to report the parser, not the encoding of the actual video.