php - Youtube or Flash File audio extraction? -
hey everyone, wondering if there current class or library in web language (php, perl, etc.) able extract audio flash files or youtube links directly.
thanks time!
the easiest way extract audio video use ffmpeg. there php extension available, have found easier (due installation woes) call binary directly exec()
.
here great tutorial stripping audio video file: http://howto-pages.org/ffmpeg/#strip
from tutorial:
ffmpeg -i mandelbrot.flv -vn -acodec pcm_s16le -ar 44100 -ac 2 mandelbrot.wav
now if "flash files" mean swf, matter entirely.
Comments
Post a Comment