Re: [FFmpeg-user] Replace dropped frames in H264

2018-12-18 Thread Aviv Hurvitz
Apologies that my question is hardly related to Ffmpeg. Just trying to tap into the knowledge of the experts on this user group. On Tue, Dec 18, 2018 at 10:32 PM Aviv Hurvitz wrote: > I am dealing with a system that transfers H264 over the internet in the > following way: > We break th

[FFmpeg-user] Replace dropped frames in H264

2018-12-18 Thread Aviv Hurvitz
I am dealing with a system that transfers H264 over the internet in the following way: We break the encoded stream into frames, then we send individual frames over the network, then we piece the stream back together. The problem is that due to inadequate network speed we sometimes drop frames out

Re: [FFmpeg-user] Dealing with incomplete HEVC/h265 video

2018-09-13 Thread Aviv Hurvitz
Thanks Gyan, we'll give mp4box a shot. On Wed, Sep 12, 2018 at 12:51 PM Gyan wrote: > On Wed, Sep 12, 2018 at 3:00 PM Aviv Hurvitz > wrote: > > > > > I'll try to delve into the HEVC stream format, maybe I'll see a record of > > the skipping in there. I hope there is

Re: [FFmpeg-user] Dealing with incomplete HEVC/h265 video

2018-09-12 Thread Aviv Hurvitz
yos wrote: > 2018-09-11 18:54 GMT+02:00, Aviv Hurvitz : > > I am using a somewhat experimental evaluation board to record HEVC > video. I > > converted the stream to mp4 using this command: > > ffmpeg -i input.bin -c:v copy out.mp4 > > Not necessarily related: > FFmp

[FFmpeg-user] Dealing with incomplete HEVC/h265 video

2018-09-11 Thread Aviv Hurvitz
I am using a somewhat experimental evaluation board to record HEVC video. I converted the stream to mp4 using this command: ffmpeg -i input.bin -c:v copy out.mp4 I can play out.mp4, however I see the video skips at some point and plays at faster-than-life rate at another point. I think there are

Re: [FFmpeg-user] Decode just I Frames in H264

2017-11-30 Thread Aviv Hurvitz
Thanks for your answer Carl. -skip_frame works. Too bad "spatial subsampling" is hard or impossible . On Thu, Nov 30, 2017 at 2:22 PM, Carl Eugen Hoyos <ceffm...@gmail.com> wrote: > 2017-11-30 10:22 GMT+01:00 Aviv Hurvitz <aviv.hurv...@gmail.com>: > > I

Re: [FFmpeg-user] MJPEG/avi encoding to H.264/mp4 and retaining original frame times

2017-10-30 Thread Aviv Hurvitz
Carl - you are right! mkv works. On Wed, Oct 25, 2017 at 11:40 PM, Carl Eugen Hoyos <ceffm...@gmail.com> wrote: > 2017-10-25 22:59 GMT+02:00 Aviv Hurvitz <aviv.hurv...@gmail.com>: > > I have an USB3 camera module that outputs an MJPEG stream. > > > > I reco

[FFmpeg-user] MJPEG/avi encoding to H.264/mp4 and retaining original frame times

2017-10-25 Thread Aviv Hurvitz
I have an USB3 camera module that outputs an MJPEG stream. I recorded it with “-v:c copy” argument to an avi file. Now I want to reencode it to a more compact file in h264/mp4 format. If I do that with default arguments, I get a file with more frames than the original! Also the FPS – as

Re: [FFmpeg-user] Record H264 webcam with DirectShow

2017-07-29 Thread Aviv Hurvitz
rsed a group of options. Opening an input file: video=Microsoft LifeCam Front. [dshow @ 02643500] Selecting pin Capture on video [dshow @ 02643500] Could not RenderStream to connect pins video=Microsoft LifeCam Front: I/O error On Fri, Jul 28, 2017 at 8:06 PM, Aviv Hurvitz <avi

[FFmpeg-user] Record H264 webcam with DirectShow

2017-07-28 Thread Aviv Hurvitz
I’m on a Surface Pro 3 running Windows 10. Trying to record an mp4 from a native H.264 stream. The H.264 video sources are on the second “pin” and I suspect that’s the problem. But the first and second pins have the same name, so I don’t know how to specify them. I was able to record from the

Re: [FFmpeg-user] Copy from mjpeg USB camera stream to file

2017-07-26 Thread Aviv Hurvitz
Well you are absolutely right. I was in low light. When working in full light I got to 30 fps. Thank you Moritz! On Wed, Jul 26, 2017 at 2:02 AM, Moritz Barsnick <barsn...@gmx.net> wrote: > On Wed, Jul 26, 2017 at 01:21:36 +0300, Aviv Hurvitz wrote: > > > I want to copy t

[FFmpeg-user] Copy from mjpeg USB camera stream to file

2017-07-25 Thread Aviv Hurvitz
I want to copy the original stream without any transcoding or processing. I'm on Windows. I got this far: >ffmpeg -y -f dshow -vcodec mjpeg -s 640x480 -framerate 30 -i video="Integrated Camera" -vcodec copy test.avi ffmpeg version N-86848-g03a9e6f Copyright (c) 2000-2017 the FFmpeg developers