Newest 'ffmpeg' Questions - Stack Overflow
Les articles publiés sur le site
-
FFMPEG : How to stream rtsp using http Protocol ?
6 décembre 2013, par Tech on TechnologyI want to how to stream rtsp using http protocol. Is this can be possible.. I found that this is possible using ffmpeg. So if this can possible with ffmpeg, please give me syntax of commands.
Thank you..
-
Does ffmpeg support streaming links
6 décembre 2013, par Jack BenSuppose i've ffmpeg installed on my server so as far as i know that the following command
<?PHP exec("ffmpeg -i video.avi -ar 22050 -ab 32 -f flv -s 320x240 video.flv"); ?>
so i wonder what if i can replace
video.avi
to streaming link like$link = "http://www.my_channels.com:33811";
$link
is streaming TV channel and i want to make it restreaming it as.flv
so is it possible ! ~ Thanks -
Extra Seconds in Recorded Video - Red5/AMS5
6 décembre 2013, par user3075493I am recording the Audio/Video in my website using flash application through Red5 Server and the generated output contains extra 30 seconds of freezed portion. I have checked the video through FFMPEG and found that first 30 seconds of the video recieves 0 kb. I want to know is there any way to remove the 0kb portions from the recorded video using FFMPEG.
-
PhoneGap : Get orientation of captured video ?
6 décembre 2013, par boomIs it possible know the orientation that the video was shot in? (portrait vs landscape)
-
Converting Audio to AAC using ffmpeg [migrated]
6 décembre 2013, par user1503606I have the following setup for ffmpeg
ffmpeg version N-54790-g1816f55-syslint Copyright (c) 2000-2013 the FFmpeg developers built on Jul 17 2013 21:34:32 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3) configuration: --prefix=/usr/local/cpffmpeg --enable-shared --enable-nonfree --enable-gpl --enable-pthreads --enable-libopencore-amrnb --enable-decoder=liba52 --enable-libopencore-amrwb --enable-libfaac --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --extra-cflags=-I/usr/local/cpffmpeg/include/ --extra-ldflags=-L/usr/local/cpffmpeg/lib --enable-version3 --extra-version=syslint libavutil 52. 40.100 / 52. 40.100 libavcodec 55. 18.102 / 55. 18.102 libavformat 55. 12.102 / 55. 12.102 libavdevice 55. 3.100 / 55. 3.100 libavfilter 3. 81.101 / 3. 81.101 libswscale 2. 4.100 / 2. 4.100 libswresample 0. 17.102 / 0. 17.102 libpostproc 52. 3.100 / 52. 3.100
I am try to use ffmpeg to convert my m4a or mp3 files to
AAC, Low Complexity Profile (LC)
Really struggling to find a command line that works for me is it even possible with my ffmpeg setup?
Thanks