[Libav-user] H264 SEI Information from libavcodec/libavformat

2021-06-25 Thread Alan Johnson
Hi, Is there anyway to add a h264 NAL (SEI Timecode) unit to an existing stream without access libavcodec source (i.e. only linking against the DLL)? ___ Libav-user mailing list Libav-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/libav-user To uns

Re: [Libav-user] H264 SEI Information from libavcodec/libavformat

2021-06-25 Thread Brad Hards
On Friday, 25 June 2021 6:00:24 PM AEST Alan Johnson wrote: > Is there anyway to add a h264 NAL (SEI Timecode) unit to an existing stream > without access libavcodec source (i.e. only linking against the DLL)? I don't think so. AFAICT, the H.264 encoders don't support SEI writing in any released

Re: [Libav-user] H264 SEI Information from libavcodec/libavformat

2021-06-25 Thread Brad Hards
On Friday, 25 June 2021 8:18:22 PM AEST you wrote: > On Friday, 25 June 2021 6:00:24 PM AEST Alan Johnson wrote: > > Is there anyway to add a h264 NAL (SEI Timecode) unit to an existing >>stream > > > without access libavcodec source (i.e. only linking against the DLL)? > > I don't think so. > >

Re: [Libav-user] H264 SEI Information from libavcodec/libavformat

2021-06-25 Thread Alan Johnson
Addition of the pic_timing as an SEI message as per h264 ISO-IEC14496-10. It can be embedded as an additional NAL unit before any NAL coded slice. Extracting the H264 bitstream to a file I can write my own parser for it to extract SPS/PPS etc and add a NAL unit. I know x264 adds SEI User messages a