Kristians Kuhta
Kristians Kuhta

Reputation: 63

wrapping h264 stream into mp4 with gstreamer

how can I wrap pure h.264 stream into mp4 using Gstreamer so that I can seek to specific location in video? Gstreamer is used because of it's licence requirements, so please do not offer ffmpeg!

Upvotes: 3

Views: 19123

Answers (1)

ensonic
ensonic

Reputation: 3440

gst-launch-1.0 filesrc location=stream.h264 ! video/x-h264 ! h264parse ! mp4mux ! filesink location=video.mp4

Upvotes: 7

Related Questions