Re: [FFmpeg-user] How to export generic audio format

2015-02-27 Thread DopeLabs
your using stream copy for the audio codec, which means its trying to output in the same audio format as the input… remove the -acodec copy and try again =] ffmpeg -i movie-file -vn audio.wav On Feb 27, 2015, at 4:38 PM, loeff...@eyetrap.net wrote: Hello all, I am using: ffmpeg -i

Re: [FFmpeg-user] How to get only audio from rawvideo stream

2015-02-27 Thread Deron
On 2/25/15 3:58 PM, Deron wrote: On 2/25/15 11:00 AM, Deron wrote: I'm trying to generate a number of HLS streams from a single source including using the new webvtt for cc. The following command: ffmpeg -i test.ts -vn -f hls -hls_segment_filename a.%d.ts -y a.m3u8 Works as expected, but

Re: [FFmpeg-user] How to get only audio from rawvideo stream

2015-02-27 Thread Nicolas George
Le nonidi 9 ventôse, an CCXXIII, Deron a écrit : As it turns out, movie=test.ts[out0+subcc] generates a rawvideo stream. No audio. So what happens to the audio, and how do I get it??? What good is subtitles if I loose the audio? Have you considered reading the fine documentation?

[FFmpeg-user] webcam video stream to vlc or http

2015-02-27 Thread ian c
Hi Experts, I tried to stream video from webcam to vlc client through network using this command. ffmpeg -f v4l2 -i /dev/video0 -c copy -f mpegts udp://192.168.250.1:9000 in windows VLC, i opened the netwrok stream using udp://192.168.250.1:9000. When it connected, it does not show any video.

Re: [FFmpeg-user] drawtext to a (transparent) bounding box

2015-02-27 Thread Jannes Faber
polite bump. Anyone please? Using drawtext on a transparent background does not seem to work. -- Jannes On 23 February 2015 at 17:55, Jannes Faber jannes.fa...@gmail.com wrote: Hi, Video editting newbie here. I'm trying to use addtext onto a box and then overlay that box on a video.

Re: [FFmpeg-user] webcam video stream to vlc or http

2015-02-27 Thread Vlăduţ Frăţiman
Ip is to computer where run vlc? Try command on same computer using localhost as ip. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Re: [FFmpeg-user] webcam video stream to vlc or http

2015-02-27 Thread ian c
yes, it is the ip where I run the vlc. Running in the same computer is impossible because the server is an embedded system that does not have display/monitor either. I can only stream the video to the remote PC through network. Date: Fri, 27 Feb 2015 17:25:50 +0200 From:

[FFmpeg-user] How to export generic audio format

2015-02-27 Thread loeffler
Hello all, I am using: ffmpeg -i movie-file -acodec: copy -vn audio.wav to extract the audio from a movie. This works sometimes but not always because some formats want a different file ending. Is there a generic audio file format that will take all formats? Thanks Markus

Re: [FFmpeg-user] How to get only audio from rawvideo stream

2015-02-27 Thread Deron
On 2/27/15 10:01 AM, Nicolas George wrote: Le nonidi 9 ventôse, an CCXXIII, Deron a écrit : As it turns out, movie=test.ts[out0+subcc] generates a rawvideo stream. No audio. So what happens to the audio, and how do I get it??? What good is subtitles if I loose the audio? Have you