ART
ART

Reputation: 1579

How to remove PES header from video stream

I have captured video stream from the multimedia device which has H264 format.

I want to remove PES header (i.e. first 14 bytes of the frame). Is it possible to do it by ffmpeg or any other tool. I tried searching online but didn't find it. I thought of scripting it out and remove it but don't know frame format completely. I know, I have to learn all format stuffs and I am going through it but I need this immediately. Any suggestion/pointers ?

Upvotes: 0

Views: 1030

Answers (1)

szatmary
szatmary

Reputation: 31140

ffmpeg -i [file or url] -codec copy out.264

Upvotes: 1

Related Questions