Re: [FFmpeg-user] Question on Segment TImes

2020-04-05 Thread Colin Bitterfield
The tape deck is a Sony DSR-45 (not the “A” model). The tapes are pre-recorded studio dubbing masters. When I do ffprobe with avfoundation it produces this output:     Stream #0:0: Video: dvvideo, yuv411p, 720x480 [SAR 8:9 DAR 4:3], 25000 kb/s, 29.97 fps, 29.97 tbr, 29.97 tbn, 29.97 tbc    

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Ted Park
Hi, > OK: That solved the timestamp problem and created a missing stream. > > Does anyone one know the magic option for getting all three streams into MOV. > > If I use this to create a DV file (from DVR-DV) it works and creates this > file: > Input #0, dv, from ‘output.dv’: > Metadata: >

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Colin Bitterfield
Is there a way to consolidate this to one command? The goal is to import of DV-TAPE with the best quality in a single pass on the tape. Sometimes I have go back and parts from FCPX imports. The tapes are old and sometimes FCPX doesn’t like them. I was able to get it going with a PIPE: (and

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Moritz Barsnick
On Sat, Apr 04, 2020 at 13:48:37 -0700, Colin Bitterfield wrote: > Does anyone one know the magic option for getting all three streams into MOV. [...] > If I just change the container to “.mov” > ffmpeg  -capture_raw_data true -f avfoundation -i DV-VCR -map 0 \ > -map_metadata 0 \ > -c:v

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Colin Bitterfield
OK: That solved the timestamp problem and created a missing stream. Does anyone one know the magic option for getting all three streams into MOV. If I use this to create a DV file (from DVR-DV) it works and creates this file: ffmpeg  -capture_raw_data true -f avfoundation -i DV-VCR -map

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Colin Bitterfield
Thanks, That solved it. On Apr 4, 2020, 2:11 AM -0700, Gyan Doshi , wrote: > > > On 04-04-2020 11:59 am, Colin Bitterfield wrote: > > I am trying to segment split a stream coming in from AVFOUNDATION > > > > ffmpeg -benchmark_all -stats -loglevel debug -copyts \ > >  -f avfoundation

Re: [FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Gyan Doshi
On 04-04-2020 11:59 am, Colin Bitterfield wrote: I am trying to segment split a stream coming in from AVFOUNDATION ffmpeg -benchmark_all -stats -loglevel debug -copyts \  -f avfoundation -capture_raw_data true -pix_fmt 0rgb -i DV-VCR -q 0 \  -map 0 -c:v copy -c:a copy -segment_time 00:00:10

[FFmpeg-user] Question on Segment TImes

2020-04-04 Thread Colin Bitterfield
I am trying to segment split a stream coming in from AVFOUNDATION ffmpeg -benchmark_all -stats -loglevel debug -copyts \  -f avfoundation -capture_raw_data true -pix_fmt 0rgb -i DV-VCR -q 0 \  -map 0 -c:v copy -c:a copy -segment_time 00:00:10 \  -f segment  374_%03d.dv -y _ I have tried various