mplayer youtube video streamer 0.0.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1253
MPlayer Youtube Video Streamer 0.0.1
MPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin. more>>
Want to watch Youtube video, but you dont have Flash plugin? (ex: gnu/linux ppc os), so try this great script to watch STREAMING VIDEOS from Youtube! You dont need to download video on your disk, you can stream directly the FLV videos from Youtube!
MPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin.
Usage: myvs [options] video_url
Options:
-h, --help print this help text and exit
-v, --version print program version and exit
-u USERNAME, --username=USERNAME account username
-p PASSWORD, --password=PASSWORD account password
-o FILE, --output=FILE output video file name
-q, --quiet activates quiet mode
-s, --stream do not download video, but stream directly by mplayer
-C, --cache set a cache of 300k, for slow connection
-c, --cycle cycle 20 times while youtube redirect to vo.llnwd.net (that streams .flv)
-t, --title use title in file name
-n, --netrc use .netrc authentication data
-O, --streamonly Force the script to stream only, if it doesnt find a valid stream server simply quit
Who to use it with Firefox:
Now I will explain you how to get it working with Firefox,
First we need a Firefox extension called: Lanchy,
this extension give us the ability to open directly from Firefox Youtube video on youtube webpage (not on all webpages that have a youtube video!
You ALWAYS need the youtube videos webpage! After you have installed Launchy (from firefoxs addon site), restart Firefox, now it will ask you to insert a Launchys button on your toolbar (DO IT! so open Youtube videos will be very simply), after that go on the preferences/option of this extension and uncheck the option: "search automatically programs".
Now copy the "launchy.xml" file that you found on the package and copy it on your directory:
".mozilla/firefox/YOUR_ID.default/chrome/" , after copied it, please dont forget to edit it with your myvs.py COMPLETE PATH, and add or delete oppurtune option to pass to the script.
Now restart again firefox an watch if it recognise the command (by pressing the G).
Go on youtube.com, open a video webpage, click on the G button-> Open in Mplayer Youtube Video Streamer.
<<lessMPlayer Youtube Video Streamer lets you watch YouTube videos even if you dont have the flash plugin.
Usage: myvs [options] video_url
Options:
-h, --help print this help text and exit
-v, --version print program version and exit
-u USERNAME, --username=USERNAME account username
-p PASSWORD, --password=PASSWORD account password
-o FILE, --output=FILE output video file name
-q, --quiet activates quiet mode
-s, --stream do not download video, but stream directly by mplayer
-C, --cache set a cache of 300k, for slow connection
-c, --cycle cycle 20 times while youtube redirect to vo.llnwd.net (that streams .flv)
-t, --title use title in file name
-n, --netrc use .netrc authentication data
-O, --streamonly Force the script to stream only, if it doesnt find a valid stream server simply quit
Who to use it with Firefox:
Now I will explain you how to get it working with Firefox,
First we need a Firefox extension called: Lanchy,
this extension give us the ability to open directly from Firefox Youtube video on youtube webpage (not on all webpages that have a youtube video!
You ALWAYS need the youtube videos webpage! After you have installed Launchy (from firefoxs addon site), restart Firefox, now it will ask you to insert a Launchys button on your toolbar (DO IT! so open Youtube videos will be very simply), after that go on the preferences/option of this extension and uncheck the option: "search automatically programs".
Now copy the "launchy.xml" file that you found on the package and copy it on your directory:
".mozilla/firefox/YOUR_ID.default/chrome/" , after copied it, please dont forget to edit it with your myvs.py COMPLETE PATH, and add or delete oppurtune option to pass to the script.
Now restart again firefox an watch if it recognise the command (by pressing the G).
Go on youtube.com, open a video webpage, click on the G button-> Open in Mplayer Youtube Video Streamer.
Download (0.060MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
580 downloads
Sinleb Youtube VideoServer 2.0
This script allows you to upload the embed code of a video from Youtube.com Video Page into a Mysql database The result is a window player for all videos;using Ajax for displaying videos:You dont more>> <<less
Download (100KB)
Added: -0001-11-30 License: Freeware Price: 0USD
downloads
Download Youtube video 0.1
Download Youtube video is a Konqueror service menu to download and encode youtube videos. more>>
Download Youtube video is a Konqueror service menu to download and encode youtube videos.
This is a hack of another service menu that stoped working (at least for me): http://www.kde-apps.org/content/show.php?content=37509
Main features:
- Download videos with the KDE file copy dialog instead of using KGet
- Automatically encode videos with mencoder, or just download
You can use ffmpeg too, just comment out the right lines in the python file, Im unable to encode some videos with ffmpeg, so mencoder is the default
<<lessThis is a hack of another service menu that stoped working (at least for me): http://www.kde-apps.org/content/show.php?content=37509
Main features:
- Download videos with the KDE file copy dialog instead of using KGet
- Automatically encode videos with mencoder, or just download
You can use ffmpeg too, just comment out the right lines in the python file, Im unable to encode some videos with ffmpeg, so mencoder is the default
Download (0.002MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
730 downloads
Get YouTube Video 1.3c
Get YouTube Video is a service menu for KDE. more>>
Get YouTube Video is a service menu for KDE.
Usage:
Right-click onto a link to a YouTube video or at the background of the YouTube site showing the video and choose action -> Download YouTube Video -> ...
Install:
cd ~/.kde/share/apps/konqueror/servicemenus/
tar xvzf /path/to/youtube-servicemenu.tar.gz
I made some modifications to the YouTube Service Menu. It didnt work for me, so I looked at the source. I added a differnent method to guess the video_id and I added additional parameters to the query string to download the video.
The query-string trick is:
video_id is a part of the site-url, in which the video is embedded:
video_ids = set(re.findall(www.youtube.com/v/([-A-Za-z0-9_]+), data))
or
m = re.search(video_id=(?P [-A-Za-z0-9_]+), data)
or
m = re.search(v=(?P [-A-Za-z0-9_]+), data)
Then I do:
url = "http://www.youtube.com/watch?v=%s" % video_id
Now url points to a site in which the video will be embedded, so I can apply following regular expression to its contens:
m = re.search(watch_fullscreen?(?P .*?)&fs=1&title=" + "(?P
<<lessUsage:
Right-click onto a link to a YouTube video or at the background of the YouTube site showing the video and choose action -> Download YouTube Video -> ...
Install:
cd ~/.kde/share/apps/konqueror/servicemenus/
tar xvzf /path/to/youtube-servicemenu.tar.gz
I made some modifications to the YouTube Service Menu. It didnt work for me, so I looked at the source. I added a differnent method to guess the video_id and I added additional parameters to the query string to download the video.
The query-string trick is:
video_id is a part of the site-url, in which the video is embedded:
video_ids = set(re.findall(www.youtube.com/v/([-A-Za-z0-9_]+), data))
or
m = re.search(video_id=(?P [-A-Za-z0-9_]+), data)
or
m = re.search(v=(?P [-A-Za-z0-9_]+), data)
Then I do:
url = "http://www.youtube.com/watch?v=%s" % video_id
Now url points to a site in which the video will be embedded, so I can apply following regular expression to its contens:
m = re.search(watch_fullscreen?(?P .*?)&fs=1&title=" + "(?P
Download (0.003MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
3227 downloads
MuSE Streamer 0.9.2
MuSE is a user-friendly tool for network audio streaming. more>>
MuSE is a user-friendly tool for network audio streaming.
MuSE provides the free software community with a user friendly but powerful tool for network audio streaming, making life easier for indypendent free speech online radios.
MuSE is an application for the mixing, encoding, and network streaming of sound: it can mix up to 6 encoded audio bitstreams (from files or network, mp3 or ogg) plus a souncard input signal, the resulting stream can be played locally on the sound card and/or encoded at different bitrates, recorded to harddisk and/or streamed to the net.
When sent to a server, the resulting audio can be listened thru the net by a vast number of players available on different operating systems.
To be operated MuSE offers graphical interfaces and a documented commandline interface in the good old unix style.
Main features:
- Mixes up to 6 channels + 1 soundcard input channel simultaniously
- decodes and mixes both ogg and mp3, from files or network streams
- encodes at different bitrates and sends multiple mp3 or ogg streams to icecast, shoutcast and darwin servers.
- offers two different intuitive user interfaces and a documented command line interface
- play, stop, pause/resume, position and volume for each channel, looping thru playlists and reconnecting automatically to lost server connections
- efficient multithreaded architecture with emphasys on performance to support older CPUs
- reusable API interface to the core mixing engine permits to adapt new interfaces
<<lessMuSE provides the free software community with a user friendly but powerful tool for network audio streaming, making life easier for indypendent free speech online radios.
MuSE is an application for the mixing, encoding, and network streaming of sound: it can mix up to 6 encoded audio bitstreams (from files or network, mp3 or ogg) plus a souncard input signal, the resulting stream can be played locally on the sound card and/or encoded at different bitrates, recorded to harddisk and/or streamed to the net.
When sent to a server, the resulting audio can be listened thru the net by a vast number of players available on different operating systems.
To be operated MuSE offers graphical interfaces and a documented commandline interface in the good old unix style.
Main features:
- Mixes up to 6 channels + 1 soundcard input channel simultaniously
- decodes and mixes both ogg and mp3, from files or network streams
- encodes at different bitrates and sends multiple mp3 or ogg streams to icecast, shoutcast and darwin servers.
- offers two different intuitive user interfaces and a documented command line interface
- play, stop, pause/resume, position and volume for each channel, looping thru playlists and reconnecting automatically to lost server connections
- efficient multithreaded architecture with emphasys on performance to support older CPUs
- reusable API interface to the core mixing engine permits to adapt new interfaces
Download (0.31MB)
Added: 2005-12-28 License: GPL (GNU General Public License) Price:
1398 downloads
Mplayer-video-thumbnailer 1.3-3
Mplayer-video-thumbnailer is a shell script for thumbnails preview in nautilus. more>>
Mplayer-video-thumbnailer is a shell script for thumbnails preview in nautilus.
A shell script which can ganrate thumbnails of video files in nautilus using mplayer.
<<lessA shell script which can ganrate thumbnails of video files in nautilus using mplayer.
Download (0.004MB)
Added: 2006-12-22 License: GPL (GNU General Public License) Price:
1050 downloads
Youtube Downloader GUI 0.2.3
Youtube Downloader GUI project is a GUI for the famous python script youtube-dl. more>>
Youtube Downloader GUI project is a GUI for the famous python script youtube-dl. It is made in Kommander, so you need it. The project is packed in rpm with icon, desktop file.
openSUSE repo:
http://software.opensuse.org/download/home:/pnemec/SUSE_Linux_10.1/
http://software.opensuse.org/download/home:/pnemec/openSUSE_10.2/
It should work on other distribution too.
<<lessopenSUSE repo:
http://software.opensuse.org/download/home:/pnemec/SUSE_Linux_10.1/
http://software.opensuse.org/download/home:/pnemec/openSUSE_10.2/
It should work on other distribution too.
Download (0.025MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
604 downloads
MP3 Streamer 2.3
MP3 Streamer streams MP3 files with an easy Web interface. more>>
This module enables to listen to mp3-streams according to certain security policies (enabled user). The mp3s do not have to be in the web-servers document root.
Main features:
- XHTML compliant.
- Admin interface allows you to change position, visibility and title of the stream playlist Box.
- You dont have to fiddle around with config files. Interface is provided to configure the paths etc., user access and reset the access counter.
- Dynamic directory parsing for mp3-files
- mp3-file names are not held in a database as the File/Directory names are used to create the displayed Songs, album titles etc. as mp3 tags extraction capabilities are not included in php by default.
- Artist, Album, mp3-file browsable
- Playlist handling capabilities with playlist editor
- Demo mode for guests possible, e.g. streaming not enabled.
- Clicking on a Song will send a mpeg-url type information to the mp3-player application such as winamp or xmms. (Tested under linux with xmms only).
Version restrictions:
- The software only searches through 2 Directory structures. It is meant to go through: $mp3dir/Artist-Name/Album-Name/mp3-files.mp3 It however detects files in the Artist-Directory and shows these accordingly. As I didnt use this function, I dont know what it looks like though.
<<lessMain features:
- XHTML compliant.
- Admin interface allows you to change position, visibility and title of the stream playlist Box.
- You dont have to fiddle around with config files. Interface is provided to configure the paths etc., user access and reset the access counter.
- Dynamic directory parsing for mp3-files
- mp3-file names are not held in a database as the File/Directory names are used to create the displayed Songs, album titles etc. as mp3 tags extraction capabilities are not included in php by default.
- Artist, Album, mp3-file browsable
- Playlist handling capabilities with playlist editor
- Demo mode for guests possible, e.g. streaming not enabled.
- Clicking on a Song will send a mpeg-url type information to the mp3-player application such as winamp or xmms. (Tested under linux with xmms only).
Version restrictions:
- The software only searches through 2 Directory structures. It is meant to go through: $mp3dir/Artist-Name/Album-Name/mp3-files.mp3 It however detects files in the Artist-Directory and shows these accordingly. As I didnt use this function, I dont know what it looks like though.
Download (0.030MB)
Added: 2005-09-28 License: GPL (GNU General Public License) Price:
1822 downloads
par2repair 0.0.1
par2repair is a useful script to fix par2 files. more>>
par2repair is a useful script to fix par2 files. Just add it to your /servicemenus/ folder and right click on any par2 files.
Its my first script so its pretty straight forward.
<<lessIts my first script so its pretty straight forward.
Download (MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
1022 downloads
Mortgage Video And Search Tool 1
The world of mortgages and real estate can be extremely confusing to the newcomer. The mortgage industry is a lot more competitive than it used to be... more>> <<less
Download (1113KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
News Streamer 0.2
News Streamer provides a script to play the most recent France 2 news report with Mplayer. more>>
News Streamer provides a script to play the most recent France 2 news report with Mplayer.
The French TV station France 2 has been kind enough to make its news broadcasts available on the Internet. However, this has been done in a way thats not particularly friendly to non-Microsoft products.
This script makes things easier by checking for the availability of the most recent news report and then playing it using Mplayer.
The checking for the availability of an episode is done using a mmsrip.
If its useful to you to watch the news at a different speed, a speed parameter may be passed to this script (eg f2 0.5 to play at half speed)
If the most recent episode is not available, this script will keep searching back until it finds the most recent available episode.
It wont keep searching for ever, however, and gives up after 10 episodes.
To be honest, if it doesnt find anything after 10 episodes it probably means that theres a problem at their end, theyve change their URL format, or youve got some kind of network trouble.
<<lessThe French TV station France 2 has been kind enough to make its news broadcasts available on the Internet. However, this has been done in a way thats not particularly friendly to non-Microsoft products.
This script makes things easier by checking for the availability of the most recent news report and then playing it using Mplayer.
The checking for the availability of an episode is done using a mmsrip.
If its useful to you to watch the news at a different speed, a speed parameter may be passed to this script (eg f2 0.5 to play at half speed)
If the most recent episode is not available, this script will keep searching back until it finds the most recent available episode.
It wont keep searching for ever, however, and gives up after 10 episodes.
To be honest, if it doesnt find anything after 10 episodes it probably means that theres a problem at their end, theyve change their URL format, or youve got some kind of network trouble.
Download (0.009MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
916 downloads
MPlayer Tools 5.2.20061015
MPlayer Tools is a collection of utilities that eases the use of MPlayer. more>>
MPlayer Tools is a collection of utilities that eases the use of MPlayer. If you have a TV tuner, you can use MPlayer Tools to record and timeshift easily.
MPlayer Tools also remembers movies and positions, so you can resume a movie with a short command. It can also detect movie series, counts the episodes, and you can specify specific MPlayer options for every movie series.
Enhancements:
- This is mostly a cosmetic release.
- mcatcher produces a lot more osd messages and has changes in PlayerMode. movisize output is better aligned.
- msum displays shortcuts. mcatcher now counts and logs only the time spent playing (not paused or loading).
- mstrip uses msum to remove entries from the logfile (so you can give regexes, --head, --tail).
<<lessMPlayer Tools also remembers movies and positions, so you can resume a movie with a short command. It can also detect movie series, counts the episodes, and you can specify specific MPlayer options for every movie series.
Enhancements:
- This is mostly a cosmetic release.
- mcatcher produces a lot more osd messages and has changes in PlayerMode. movisize output is better aligned.
- msum displays shortcuts. mcatcher now counts and logs only the time spent playing (not paused or loading).
- mstrip uses msum to remove entries from the logfile (so you can give regexes, --head, --tail).
Download (0.049MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1104 downloads
YouTube Cinema 4.7
Play YouTube videos in cinema style. more>>
YouTube Cinema 4.7 is a high-speed and powerful program which is capable of playing YouTube videos in cinema style.
<<less Added: 2009-07-15 License: MPL Price: FREE
27 downloads
MPlayerXP 0.7.1
MPlayerXP is a branch of the well known mplayer (http://mplayerhq.hu) which is based on the new (thread based) core. The new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback. more>>
MPlayerXP - MPlayerXP is a branch of the well known mplayer (http://mplayerhq.hu) which is based on the new (thread based) core. The new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback.
Enhancements:
Version 0.6.2
System Requirements:<<less
Download (4.8Mb)
Added: 2009-06-01 License: Free Price: Free
22 downloads
Other version of MPlayerXP
License:GPL (GNU General Public License)
VDR MP3/MPlayer Extensions 0.10.0
VDR MP3/MPlayer Extensions let you play MP3s with Video Disk Recorder and provide a frontend for MPlayer. more>>
VDR MP3/MPlayer Extensions let you play MP3s with Video Disk Recorder and provide a frontend for MPlayer so you can use a DVB card to play files in formats like AVI, ASF, QT, MOV, VIVO, FLI, and FLC.
VDR MP3 plugin adds sound playback capability to VDR by Klaus Schmidinger.
Supported audio codecs:
- libmad Supports MPEG-1/2/2.5 with layers 1/2/3.
- libsndfile Supports MS WAV/A-law/u-law; Apple/SGI AIFF/AIFC; Sun/NeXT AU/SND; Amiga IFF/8SVX/16SV and more.
- libvorbis Supports Vorbis/Ogg.
The MP3 plugin is distributed as a dual-plugin together with the MPlayer plugin. The different audio codecs require additional support libraries.
VDR MPlayer plugin adds the ability to call MPlayer from within VDR (by Klaus Schmidinger), allowing to replay all video formats supported by MPlayer over your DVB card.
Note: for most formats MPlayer has to do on-the-fly transcoding to MPEG1. This requires a decent CPU to work (>1Ghz). It may work with slower CPUs if you tune down the transcoding quality.
The MPlayer plugin is distributed as a dual-plugin together with the MP3 plugin.
<<lessVDR MP3 plugin adds sound playback capability to VDR by Klaus Schmidinger.
Supported audio codecs:
- libmad Supports MPEG-1/2/2.5 with layers 1/2/3.
- libsndfile Supports MS WAV/A-law/u-law; Apple/SGI AIFF/AIFC; Sun/NeXT AU/SND; Amiga IFF/8SVX/16SV and more.
- libvorbis Supports Vorbis/Ogg.
The MP3 plugin is distributed as a dual-plugin together with the MPlayer plugin. The different audio codecs require additional support libraries.
VDR MPlayer plugin adds the ability to call MPlayer from within VDR (by Klaus Schmidinger), allowing to replay all video formats supported by MPlayer over your DVB card.
Note: for most formats MPlayer has to do on-the-fly transcoding to MPEG1. This requires a decent CPU to work (>1Ghz). It may work with slower CPUs if you tune down the transcoding quality.
The MPlayer plugin is distributed as a dual-plugin together with the MP3 plugin.
Download (0.11MB)
Added: 2007-06-17 License: GPL (GNU General Public License) Price:
870 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mplayer youtube video streamer 0.0.1 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed