Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Tim Hiles
Hi all, I figured out a workaround (three step process) and for posterity's sake figured I'd mention it here. #1. Transcode to AVI like so: ffmpeg -i "clip-2007-01-01 17;02;58.dv" -vcodec copy -vtag dvsd -acodec pcm_s16le -f avi -y "clip-2007-01-01 17;02;58.dv.avi" #2. Remove the audio with the

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Tim Hiles
On Mon, Dec 26, 2016 at 7:05 PM, Steven Liu wrote: > > > ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c:v copy -an -map 0:0 > "noaudio.dv" Thanks Steven unfortunately that didn't work either. Still same filesize and still has audio when played back. :\ ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c:v

Re: [FFmpeg-user] Append live to existing video

2016-12-26 Thread Louis Letourneau
> What about the option "-hls_flags append_list" Well what do you know, change request from you on Aug. 11, 2016, what a terrific idea. My version doesn't have it, I'll compile a new one and try it as soon as I can. Thanks a lot Liu! That sounds exactly like what I need. Louis ___

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Steven Liu
2016-12-27 11:03 GMT+08:00 Tim Hiles : > On Mon, Dec 26, 2016 at 4:40 PM, 桃源老師 wrote: > > > Sorry if I disturbing you... > > > > > 2016/12/27 7:47 A.M. Tim Hiles wrote: > > > > > > ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c copy -an "noaudio.dv" > > > > I think you should tell ffmpeg to: > > > >

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Tim Hiles
On Mon, Dec 26, 2016 at 4:40 PM, 桃源老師 wrote: > Sorry if I disturbing you... > > > 2016/12/27 7:47 A.M. Tim Hiles wrote: > > > > ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c copy -an "noaudio.dv" > > I think you should tell ffmpeg to: > > ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c:v copy -an "noaud

Re: [FFmpeg-user] Append live to existing video

2016-12-26 Thread Steven Liu
2016-12-27 0:05 GMT+08:00 Louis Letourneau : > Is it possible to start a live capture at the end of an existing video in > the hls format? > > Say you have a captured m3u8, something happens and you want to restart > ffmpeg but continue capturing at the end of the previous m3u8? > > I guess concat

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread 桃源老師
Sorry if I disturbing you... > 2016/12/27 7:47 A.M. Tim Hiles wrote: > > ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c copy -an "noaudio.dv" I think you should tell ffmpeg to: ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c:v copy -an "noaudio.dv" you might missing "-c:v"... Best Regards, // Miya

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Tim Hiles
On Mon, Dec 26, 2016 at 4:08 PM, Moritz Barsnick wrote: > On Mon, Dec 26, 2016 at 14:47:11 -0800, Tim Hiles wrote: > > Output #0, dv, to 'noaudio.dv': > > Metadata: > > timecode: 00:33:32;19 > > encoder : Lavf57.61.100 > > Stream #0:0: Video: dvvideo, yuv411p, 720x48

Re: [FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Moritz Barsnick
On Mon, Dec 26, 2016 at 14:47:11 -0800, Tim Hiles wrote: > Output #0, dv, to 'noaudio.dv': > Metadata: > timecode: 00:33:32;19 > encoder : Lavf57.61.100 > Stream #0:0: Video: dvvideo, yuv411p, 720x480 [SAR 8:9 DAR 4:3], q=2-31, > 25000 kb/s, 29.97 fps, 29.97 tbr, 29.9

[FFmpeg-user] Remove audio from DV file not working

2016-12-26 Thread Tim Hiles
Hello all, I have a DV file and tried this: ffmpeg -i "clip-2007-01-01 17;02;58.dv" -c copy -an "noaudio.dv" ffmpeg version N-82889-g54931fd Copyright (c) 2000-2016 the FFmpeg developers built with gcc 5.4.0 (GCC) configuration: --enable-gpl --enable-version3 --enable-dxva2 --enable-libmfx --

Re: [FFmpeg-user] [delogo @ 0x4bfaba0] Logo area is outside of the frame.

2016-12-26 Thread Moritz Barsnick
On Sun, Dec 25, 2016 at 09:15:20 -0700, Jim Worrall wrote: > > [zhouhong@localhost bin]$ /home/zhouhong/Downloads/ffmpeg-3.2/ffmpeg -y -i > > "/mnt/hgfs/downloads/light.mp4" -i "/mnt/hgfs/downloads/light.mp4" > > -filter_complex > > '[0:v]yadif,delogo=0:0:50:50:band=10,delogo=20:20:20:20:band=10

[FFmpeg-user] Append live to existing video

2016-12-26 Thread Louis Letourneau
Is it possible to start a live capture at the end of an existing video in the hls format? Say you have a captured m3u8, something happens and you want to restart ffmpeg but continue capturing at the end of the previous m3u8? I guess concat can't do it since it has to be done on complete videos.