Active Topics

 



Notices


Reply
Thread Tools
rcull's Avatar
Posts: 299 | Thanked: 168 times | Joined on Jun 2006 @ Wales UK
#31
To download any flash file from a url edit filologens script to look like:-

Code:
lynx -source "<input url>" | grep -o 'http.*flv' | wget -i - -c -O "<output filename>"
Thats 'space "minus i" space minus space -c space "minus uppercase o" space <filename> '

Replaces rvlc with wget, will only work with the -O if there is only one file. replace with xargs wget if more than one flv on the url.

DISCLAIMER:
Please bear in mind, copyright, you should only use this for free content

Rick
__________________
Class .. : Power User,Tester,Apprentice Developer
Humor .. : [#####-----] Alignment: Gadget Junky,Grumpy old man
Patience : [##########] Weapon(s): Indifference
Agro ... : |##--------] Relic(s) : 770,N800,eee

 
Bec's Avatar
Posts: 876 | Thanked: 396 times | Joined on Dec 2009
#32
So how much of the url does it actually need?
http://smotri.com
http://smotri.com/video/view/?id=
http://smotri.com/video/view/?id=v[some long number]

I guess this would require editing the script every time?
__________________
 

The Following User Says Thank You to Bec For This Useful Post:
mrebanza's Avatar
Posts: 290 | Thanked: 132 times | Joined on Jan 2010 @ New York City
#33
Originally Posted by geohsia View Post
It's a great site for the N900 too. You can suck down the .flv file and play it on the KMPlayer. I tried it and it works pretty well. No need to do any conversion on the files.
How do you do this????
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#34
Originally Posted by Bundyo View Post
Save that as a bookmark and run it on one of tvgorge's episodes.
Hmmmmmmmmm.... trying it, pops up with a message to enter the url, so i paste in the tvgorge URL page i am on (with a tv show on it)......

Nothing? - does it do things in the background?
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#35
ignore me!!!

The language didnt make much sense to me!

i think is meant is.....
Run the bookmark, then copy the url in the popup box and play it in kmplayer - it will then stream the file - works perfectly!

Would like to see a download option - similar to the iplayer method - can got in xterm and type iplayer <url> and it downloads
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 241 | Thanked: 69 times | Joined on Dec 2009 @ Germany
#36
is there a way to tell mplayer to open the copied url or do i need kmplayer for that?
 
mrebanza's Avatar
Posts: 290 | Thanked: 132 times | Joined on Jan 2010 @ New York City
#37
Originally Posted by filologen View Post
I got better results with vlc, but haven't done any real testing.

I have automated the process a bit by creating a simple one-liner script with the following content:

Code:
lynx -source "$1" | grep -o 'http.*flv' | xargs rvlc
I called this script "tvf" and put it in my usual scripts folder.

Now, I can go to the tvforge website and copy the url for the episode and fire up the terminal and paste it as an argument for the script, e.g.

Code:
tvf http://tvgorge.com/shows/desperate-housewives/season-6/you-gotta-get-a-gimmick/
NB: Of course this only works if you have vlc, xargs, and lynx installed.

EDIT: Regarding, lynx, xargs, and vlc, see

http://maemo.org/packages/view/lynx/
http://maemo.org/packages/view/findutils-gnu/
http://www.remlab.net/files/vlc/fremantle/

But keep in mind that this is unofficial (prerelease) software -- especially vlc -- and install on your own risk.

Wow that is really something . . . but the average user is NOT going to be comfortable doing this . . . . .

I am not as handy with linux scripts as I am with PHP and JavaScript . . . if I was going to do this I would make a java-script bookmarklet to pass the url to a php page that would do the rest . . . no copy and pasting ... no extra packages on your device . . .

My question is are the bookmarklets in MicroB???

Or Mobile FF for that matter???

Last edited by mrebanza; 2010-02-07 at 10:47.
 
Bec's Avatar
Posts: 876 | Thanked: 396 times | Joined on Dec 2009
#38
I've updated my thread regarding streaming with the latest news on this thread: http://talk.maemo.org/showthread.php?p=503229
It explains what Bundyo means by bookmarklet (basically create a bookmark, paste his code as the target and run it while starting a video from tvgorge)

I didn't add the VLC solution yet since vlc seems a little "rough around the edges"...
__________________
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#39
Originally Posted by mrebanza View Post
Wow that is really something . . . but the average user is NOT going to be comfortable doing this . . . . .

I am not as handy with linux scripts as I am with PHP and JavaScript . . . if I was going to do this I would make a java-script bookmarklet to pass the url to a php page that would do the rest . . . no copy and pasting ... no extra packages on your device . . .

My question is are the bookmarklets in MicroB???

Or Mobile FF for that matter???

not sure on your above one? Bundyos was on microb ,works fine.
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#40
Originally Posted by raily View Post
is there a way to tell mplayer to open the copied url or do i need kmplayer for that?
think you probably can do it prob terminal probably mplay <url> (Just a guess)...

KMplayer is just the graphical viewer front-end.
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Reply

Tags
csi miami, free, spam like, subject


 
Forum Jump


All times are GMT. The time now is 23:16.