View Single Post
  #2  
Old 06-09-2012, 10:19 AM
svnpenn svnpenn is offline
Banned
 
Join Date: Apr 2011
Location: Dallas
Posts: 757
svnpenn is on a distinguished road
Default

Re: Have a Video Stream i cant get, LINK is Provided


Code:
#!/bin/sh
# Download the parts
i=1
while wget "edgecastcdn.net/00096D/products/cwg/video/binary/pres1/data/swf/slide${i}.swf"; do
  ((i++))
done

# Optional, convert the parts. You can just play the swf file through
# the browser if you prefer.
i=1
while ffmpeg -i "slide${i}.swf" -c copy "slide${i}.mp3"; do
  ((i++))
done

​

Last edited by svnpenn : 06-09-2012 at 08:44 PM.
Reply With Quote