How can I see a movie from one of several streaming sites? I would like use mplayer, given a certain url.
For instance:
mplayer -url http://address
Well, I have the same problem, and I solved the problem in this way:
paste cURL and put the stream in a new file, like in this way:
curl ..... > movie
now, in another tab, you can view your movie with mplayer, simply in this way:
mplayer -fs movie -idx
Explanation:
-fs put your video in fullscreen
-idx "Rebuilds index of files if no index was found, allowing seeking. Useful with broken/incomplete downloads, or badly created files."