Skip to content

Instantly share code, notes, and snippets.

@magnetogit
Forked from narate/ffplay-tutulive.sh
Created April 13, 2017 04:07
Show Gist options
  • Save magnetogit/da61dc8a4b734cd48b3b06cc78413dd3 to your computer and use it in GitHub Desktop.
Save magnetogit/da61dc8a4b734cd48b3b06cc78413dd3 to your computer and use it in GitHub Desktop.
Playing Tutu Live video from command line
#!/bin/bash
if [ $# -eq 0 ]
then
echo "Usage : $0 url"
exit
fi
M3U8_URL=$(curl -s $1 | grep " var url" | sed 's/.*\(http.*.m3u8\).*/\1/')
ffplay $M3U8_URL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment