Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread Francois Visagie
-Original Message- From: ffmpeg-user-boun...@ffmpeg.org [mailto:ffmpeg-user- boun...@ffmpeg.org] On Behalf Of fernando.takeshi Sent: 17 September 2014 01:39 To: ffmpeg-user@ffmpeg.org Subject: [FFmpeg-user] Mux encoded video data directly into mp4 files Hello, I've been

Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread Carl Eugen Hoyos
fernando.takeshi fernando.takeshi at seventh.com.br writes: I've tested the command line approach and it seems to work for h264 and mpeg files, but not for mjpeg. Could you elaborate? How can I reproduce this? Right now, I do not have any sample code working - the muxing example generates

Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread einguste
I try to test. $ ffmpeg -i mjpeg.hex -vcodec copy mjpeg.mp4 ffmpeg version N-66318-g85f2c01 Copyright (c) 2000-2014 the FFmpeg developers built on Sep 18 2014 00:12:17 with gcc 4.9.1 (GCC) configuration: --enable-gpl --enable-version3 --enable-avisynth --enable-fontconfig --enable-frei0r

Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread Carl Eugen Hoyos
einguste einguste at gmail.com writes: I try to test. Thank you! Carl Eugen ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread fernando.takeshi
Ok, it seems that a newer build of ffmpeg can understand and mux the mjpeg raw frames file. Still, that doesn't help me much, since I need to do this programatically... thank you for your time though! -- View this message in context:

Re: [FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-17 Thread Carl Eugen Hoyos
fernando.takeshi fernando.takeshi at seventh.com.br writes: Ok, it seems that a newer build of ffmpeg can understand and mux the mjpeg raw frames file. It works with older versions if the file has a .mjpeg suffix or if you force the file format. Still, that doesn't help me much, since I

[FFmpeg-user] Mux encoded video data directly into mp4 files

2014-09-16 Thread fernando.takeshi
Hello, I've been searching for ways to create .mp4 files directly from saved raw video data. The sources of said data can record frames in the h264, mpeg and mjpeg formats; I end up with files that are basically raw frames of these formats, one after the other. Now, I've tested the command line