Last active
August 29, 2015 14:25
-
-
Save raveman/069122cf08fef8f5c600 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget --content-disposition http://buy-home.tv/admin/reels/playlist | |
FILE=`wget --server-response -q -O - "http://buy-home.tv/admin/reels/playlist" 2>&1 |. | |
grep -i "Content-Disposition:" | tail -1 | awk 'match($0, /filename=(.+)/, f) { print f[1] }' | sed -e 's/^"//' -e 's/"$//'` | |
cd ./tmp | |
youtube-dl -a ../$FILE -f mp4 --skip-download | |
cd .. | |
for f in tmp/*.mp4 | |
do | |
ffmpeg -n -i "$f" -c copy -bsf:v h264_mp4toannexb -f mpegts "$f".ts | |
done | |
today=`date +%Y%m%d` | |
playlist=playlist_$today.pls | |
echo > $playlist | |
for f in tmp/*.ts | |
do | |
echo "file '$f'" >> $playlist | |
done | |
ffmpeg -n -f concat -i $playlist -c copy -bsf:a aac_adtstoasc stream_$today.mp4 | |
for i in {1..10} | |
do | |
echo "file './stream_$today.mp4'" >> $today.pls | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment