Warning: session_start(): open(/tmp/sess_8bcmmhk7713ttv4p1ulgvkrbe5, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Get YouTube Video (improved) openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Get YouTube Video (improved)

   1.12a  

KDE Service Menu

Score 80%
Get YouTube Video (improved)
zoom


Get YouTube Video (improved)
zoom


Link:  Link
Downloads:  24214
Submitted:  Jun 25 2006
Updated:  May 5 2012

Description:

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 -> ...


About:
I made some modifications to the original YouTube Service Menu. It didn't work for me, so I looked at the source. I added a different method to guess the video_id and I added additional parameters to the query string to download the video.

With this Konqueror/KDE service menu it is possible to download a YouTube video
by right clicking a link to the video and choosing "Download YouTube Video" from the
actions menu.

For more details see:
http://bitbucket.org/panzi/youtube-service-menu/wiki/Home

See also the original version(s) of this script:
http://www.kde-apps.org/content/show.php?content=37509
http://www.kde-apps.org/content/show.php?content=41432

Note:
I don't use this script myself anymore because I now use this userscript (which I also made):
http://userscripts.org/scripts/show/98782

This means this script might not be maintained in the future.




Changelog:

version 1.12a:
FIX: encoding problems

version 1.12:
NEW: chose format from menu with --format=ask.
NEW: --list option for Python script.
FIX: typos that made the script crash

version 1.11b:
FIX: Crash introduced in last version.

version 1.11a:
Updated greek translation. Thanks to Dimitrios Glentadakis.

version 1.11:
FIX: Extraction of video information. Now a different data extraction strategy
reading the flashvars of embed is used. Hopefully this is more stable.

version 1.10a:
ADD: Greek translation, thanks to Dimitrios Glentadakis (dglent)

version 1.10:
FIX: Extraction of video information. Now a different data extraction strategy
reading the flashvars of embed is used. Hopefully this is more stable.
DEP: New dependency to lxml: http://lxml.de/
NEW: Added video format 38: High Definition 3072p (mp4)

For more see:
http://bitbucket.org/panzi/youtube-service-menu/src/tip/Changelog




LicenseGPL
(youtube-servicemenu-1.12a.tar.bz2)
Fedora(youtube-servicemenu-kde4-1.12a-1.noarch.rpm)
Send to a friend
Subscribe
Other  Content  from panzi
Report inappropriate content



goto page: prev   1  2  3  4  5  6  7  8 

-
.

 KDE3

 
 by JmOnKeY on: Nov 20 2007
 
Score 50%
JmOnKeYJmOnKeY
LinuxLAB
Home

All worked really well for me THANKYOU,
one thing I had to do for KDE3 on Opensuse 10.3:
Using the Shell install method I had to change /usr/share/apps/konquerer to /opt/kde3/share/apps/konquerer obviously because kde3 is in /opt not /usr/share etc. I hear that kde 4 has gone back to the standard /usr/share etc in Opensuse 10.3.

worked so well, cheers


When a company like IBM dumps MS
for Linux you know it's time to start
"Thinking Outside The Square"
LINUX 'a next generation phenomenon'

Reply to this

-

 Re: KDE3

 
 by appleman on: Dec 9 2007
 
Score 50%
applemanappleman
private

Hi,

Instead of hard-wired "/usr" you can use >kde-config --prefix< surrounded with backticks which should return the right prefix path.

Replace the specific line 4 with these one:

install get_yt_video.desktop `kde-config --prefix`/share/apps/konqueror/servicemenus/


Reply to this

-
.

 Update?

 
 by Picander on: Jan 24 2008
 
Score 50%

I had to update the .py to get this working again.

just add:

if m is None:
m = re.search("watch_fullscreen\\?fs=1&(?P<vid_query>.*?)&title=(?P<name>.*)';\n", data)


right after:

m = re.search("watch_fullscreen\\?(?P<vid_query>.*?)&fs=1&title=(?P<name>.*)';\n", data)


Reply to this

-

 Re: Update?

 
 by panzi on: Jan 29 2008
 
Score 50%

I just removed the &fs=1 and it seems to work perfectly. But thanks. :)


Reply to this

-
.

 I don't get it

 
 by uaelee on: Mar 16 2008
 
Score 50%

Why u guys are talking a language I don’t understand?!
Where should I write/install this script in order to get “download video” in my right click options?


Reply to this

-

 Re: I don't get it

 
 by panzi on: Mar 27 2008
 
Score 50%

See the install script:
install get_yt_video.py /usr/bin/
install get_yt_video.desktop /usr/share/apps/konqueror/servicemenus/
mkdir -p /usr/share/get_yt_video/
find l10n -mindepth 1 -maxdepth 1 -type d -exec cp -r {} /usr/share/get_yt_video/ \;

If your KDE is not installed under the /usr prefix you have to adapt those paths.


Reply to this

-

 KDE 4?

 
 by nisavid on: Mar 16 2008
 
Score 50%

Will see KDE4 support in the near future? Please? Especially since flash still doesn't work in Konqueror 4.0.2.


Reply to this

-

 Re: KDE 4?

 
 by panzi on: Mar 27 2008
 
Score 50%

When I will have KDE4 I will port it to KDE4. But is porting really necessary? I mean, is there really something different about how konqueror handles .desktop files in KDE4? I thought thats an freedesktop.org standard (well, with KDE extensions). I will install KDE4.1 when it's released. I don't install 4.0.x.

Flash is not working for you? It works for me (Firefox and Konqueror). I use Fedora 8, 32bit installation, with the adobe-linux-i386 repository, see:
http://fedorasolved.org/browser-solutions/flash/?searchterm=flash


Reply to this

-

 Re: Re: KDE 4?

 
 by KevinKofler on: Apr 11 2008
 
Score 50%

The KDE 4 servicemenu format is slightly different and they're in a different directory.


Reply to this

-

 Re: Re: Re: KDE 4?

 
 by panzi on: Apr 11 2008
 
Score 50%

I see. I will adapt it when I will use KDE 4.


Reply to this

-
.

 Fedora RPM broken

 
 by KevinKofler on: Apr 11 2008
 
Score 50%

The Fedora package is broken, it contains a /bin/mkdir binary which conflicts with the system one.


Reply to this

-

 Re: Fedora RPM broke

 
 by panzi on: Apr 11 2008
 
Score 50%

Urgh. It does. Why the hell does it contain that? Hmpf. Have to check that out.


Reply to this

-

 Re: Fedora RPM broke

 
 by panzi on: Apr 11 2008
 
Score 50%

I fixed the problems (I hope).


Reply to this

-

 YouTubeRobot

 
 by max02111 on: May 5 2008
 
Score 50%

YouTubeRobot.com today announces YouTube Robot 2.0, a tool that enables you to download video from YouTube.com onto your PC, convert it to various formats to watch it when you are on the road on mobile devices like mobile phone, iPod, iPhone, Pocket PC, PSP, or Zune.

YouTube Robot allows you to search for videos using keywords or browse video by category, author, channel, language, tags, etc. When you find something noteworthy, you can preview the video right in YouTube Robot and then download it onto the hard disk drive. The speed, at which you will be downloading, is very high: up to 5 times faster than other software when you download a single file and up to 4 times faster when you download multiple files at a time.

Manual download is not the only option with YouTube Robot. You may as well schedule the download and conversion tasks to be executed automatically, even when you are not around. Downloading is followed by conversion to the format of your choice and uploading videos to a mobile device (if needed). For example, you can plug in iPod, select the video, go to bed, and when you wake up next morning, your iPod will be ready to play new YouTube videos.

Product page: http://www.youtuberobot.com
Direct download link: http://www.youtuberobot.com/download/utuberobot.exe
Company web-site: http://www.youtuberobot.com
E-mail: support@youtuberobot.com


Reply to this

-

 Re: YouTubeRobot

 
 by panzi on: May 6 2008
 
Score 50%

Well, but your software costs money and is Windows only. And it's a different use case then this script. This script you use in combination with the YouTube website and not as a standalone app.

People who are using my script are most likely NOT using Windows, so your spam here is ineffective.


Reply to this

goto page: prev   1  2  3  4  5  6  7  8 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team