I want to encode after seeking to a certain position, and i want to make the first frame a key-frame, here the command i used:
ffmpeg -ss 300 -i howimet.mp4 -acodec libfaac -ar 48000 -ab 128k -ac 2 -vcodec libx264 -vf "scale=480:270" -f mpegts -force_key_frames 300 -t 120 howimet2.ts
the -force_key_frames is set to seek position to make a key frame there. I use the following script (from here) to check if the first frame is key-frame
ffprobe -show_frames -v quiet howimet2.ts | awk -F= ' /pict_type=/ { if (index($2, "I")) { i=1; } else { i=0; } }
/pkt_pts_time/ { if (i && ($2 >= 0)) print $2; }
' | head -n 1
The result show the first key-frame is not locate at second 0.
I guess my command is not correct. what am I missing?
Answer
When encoding video, the first frame has to be a keyframe. It will be the first one fully encoded, and subsequent frames may use it for inter-frame prediction. Also, at the beginning of the coded video sequence, you will have an H.264 access unit that tells the decoder to refresh.
So, regardless of what you're doing: Unless you just copy the bitstream, you're re-encoding the video and your first frame has to be a keyframe.
Now, for whatever reason your stream has an offset in its start time. This means that all the presentation timestamps are also shifted according to this offset. If you inspect the head of the ffprobe -show_frames
output, you'll see that frame 0 will indeed be a keyframe, but with a different PTS.
To compensate for this, you can subtract the start time from all PTS.
No comments:
Post a Comment