[vdr] [ANNOUNCE] vdr-webvideo 0.0.1
I'm glad to announce a new plugin called Webvideo. The Webvideo plugin allows downloading video files from video sharing websites, such as YouTube or Google Video, to your hard disk using the VDR menu interface. This plugin only downloads videos, a separate program is needed to play them. The plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo Enjoy, Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.0.2
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.0.2.tgz The Webvideo plugin allows downloading video files from video sharing websites, such as YouTube or Google Video, to your hard disk using the VDR menu interface. This plugin only downloads videos, a separate plugin, such as xineliboutput or mplayer plugin, is needed to play them. Changes since the last version: - Italian translation (thanks to Diego Pierotto) - Support for mms URLs using libmms - Guess the file extension from the Content-Type header, not from the defaultext tag - New video service: YLE Areena (the web service of the Finland's national broadcasting company). Only partial support, some of the URLs do not work with libmms. - Youtube: Download higher quality MPEG-4 videos Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.0.2
> -I../../../include download.c > In file included from download.c:18: > /usr/include/libmms/mms.h:79: error: expected ',' or '...' before 'this' > /usr/include/libmms/mms.h:81: error: expected ',' or '...' before 'this' > /usr/include/libmms/mms.h:83: error: expected ',' or '...' before 'this' > make[1]: *** [download.o] Error 1 > > How can i solve it? According to https://bugs.launchpad.net/libmms/+bug/180201 this is a bug in libmms. The above page contains a link to a patch that should fix it. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] OT: [vdr-webvideo] Question to implementation (was: Re: [ANNOUNCE] vdr-webvideo 0.0.2)
On Fri, 25 Jul 2008, Paul Menzel wrote: > Dear Antti, > > > is this plugin just a backend for for example clive or youtube-dl or did > you implement the download algorithms all by yourself? The downloader was written by me, and doesn't depend on clive, youtube-dl or any similar program. -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.0.3
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.0.3.tgz The Webvideo plugin allows downloading video files from video sharing websites YouTube, Google Video, and YLE Areena to your hard disk using the VDR menu interface. This plugin only downloads videos. A separate plugin, such as xineliboutput or mplayer plugin, is required to play them. Changes since the last version: - Support for video search - Updated Italian translation (thanks to Diego Pierotto) - Try mmsh if mms protocol fails (requires libmms 0.4 or later). Most videos on YLE Areena seem to work after this fix. - Fix segfault when deleting the plugin at VDR exit - Youtube: switch back to low quality FLV videos because not all videos have MP4 version -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] compile error webvideo-0.0.3
Halim Sahin wrote: Hi, I can't build the plugin. menu.c: In member function ‘int cNavigationMenu::GoToURL(const char*, eLinkType, const char*)’: menu.c:497: warning: deprecated conversion from string constant to ‘char*’ In file included from download.c:18: /usr/include/libmms/mmsx.h:58: error: expected ‘,’ or ‘...’ before ‘this’ /usr/include/libmms/mmsx.h:60: error: expected ‘,’ or ‘...’ before ‘this’ /usr/include/libmms/mmsx.h:62: error: expected ‘,’ or ‘...’ before ‘this’ This is a bug in libmms headers. You can apply the attached patch to /usr/include/libmms/mmsx.h. Or, if you don't want to edit system files, replace every occurrence of the string "mmsx" with "mms" in download.c in the plugin sources. In the latter case the plugin loses the ability to automatically try mmsh protocol if mms fails. -- Antti Ajanki Index: libmms-0.4/src/mmsx.h === --- libmms-0.4.orig/src/mmsx.h 2008-08-04 11:13:49.0 +0300 +++ libmms-0.4/src/mmsx.h 2008-08-04 11:14:00.0 +0300 @@ -55,11 +55,11 @@ mms_off_t mmsx_get_current_pos (mmsx_t *instance); -uint32_t mmsx_get_asf_header_len (mmsx_t *this); +uint32_t mmsx_get_asf_header_len (mmsx_t *instance); -uint64_t mmsx_get_asf_packet_len (mmsx_t *this); +uint64_t mmsx_get_asf_packet_len (mmsx_t *instance); -int mmsx_get_seekable (mmsx_t *this); +int mmsx_get_seekable (mmsx_t *instance); #ifdef __cplusplus } ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.0.5
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.0.3.tgz The Webvideo plugin allows downloading video files from video sharing websites YouTube, Google Video, and YLE Areena to your hard disk using the VDR menu interface. This plugin only downloads videos. A separate plugin, such as xineliboutput or mplayer plugin, is required to play them. Changes since the last version announced on this list: 2008-08-21: Version 0.0.4 - Updated Italian translation (thanks to Diego Pierotto) - Include a workaround for a bug in the libmms header file mmsx.h which caused the compilation to fail - Fix compiler warnings 2008-09-08: Version 0.0.5 - New video service: SVT Play. Contributed by Lars Olsson. - More robust parsing of .asx files - Workaround for buggy servers: if the server reports the Content-Type of a video file as text/plain do not use it for deciding the file extension. Try to extract the extension from the URL instead. - Sort service names alphabetically -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.0.6
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.0.6.tgz The Webvideo plugin allows downloading video files from video sharing websites YouTube, Google Video, and YLE Areena to your hard disk using the VDR menu interface. This plugin only downloads videos. A separate plugin, such as xineliboutput or mplayer plugin, is required to play them. Changes since the last version: - French translation (Thanks to Bruno Roussel) - Fixed Youtube parsing to accommodate to recent changes -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.1.0
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.1.0.tgz The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of xineliboutput plugin the videos can be played directly without downloading them first. Changes since the last version: - The downloader backend is now a separate server process. The user interface is no longer blocked while the plugin is waiting for a web server to respond. - Support for streaming - A new command line client that has the same capabilities as the plugin but can be used without VDR. - Alternative URLs for videos. For example, Youtube module first tries to download high quality version, and falls back to standard version if high quality version is not available. - Cleaning up of the XML menu scheme. New menu items: textfields, item lists, query buttons. - Status page that lists uncompleted downloads - Updated YouTube, Google, and SVTPlay modules to work with the recent changes on these sites -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.1.0
Jukka Tastula wrote: > On Sunday 08 February 2009 21:45:55 Antti Ajanki wrote: >> New version of the Webvideo plugin is available at >> http://users.tkk.fi/~aajanki/vdr/webvideo/vdr-webvideo-0.1.0.tgz > > Maybe I'm just doing it wrong but compiling the usual way I'm getting > > Plugin webvideo: > ERROR: plugin webvideo doesn't honor APIVERSION - not compiled! The (non-Debian) build instructions are indeed outdated. Sorry about that. For now, the easiest way to compile is the following: # Compile the plugin cd /put/your/path/here/VDR/PLUGINS/src tar -xzf /put/your/path/here/vdr-webvideo-X.Y.Z.tgz cp -r webvideo-0.1.0/vdr-plugin/ webvideo# <-- note: cp, not ln! mkdir -p /video/plugins/webvideo cp webvideo/mime.types /video/plugins/webvideo cd /put/your/path/here/VDR make make plugins # Install the daemon and the webvi client cd PLUGINS/src/webvideo-0.1.0 mkdir -p /usr/share/webvid cp -r webvidaemon/services/* /usr/share/webvid python setup.py And running: # Start the daemon (must be running when plugin is in use) python /usr/bin/webvid -d -l/tmp/webvid.log # Run VDR with the plugin ./vdr -P webvideo Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.1.0
Karsten Mueller wrote: > I'm quite sure I'm doing something wrong but I followed your > instructions to the point which leaves me at > > > # python setup.py > > usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] > or: setup.py --help [cmd1 cmd2 ...] > or: setup.py --help-commands > or: setup.py cmd --help > > error: no commands supplied This is another error in the instructions. Instead of python setup.py it should say python setup.py install Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.1.1
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of xineliboutput plugin the videos can be played directly without downloading them first. Important changes: - Simplified building: better Makefile, fixed instructions in README - German translation (contributed by cnc at gmx.de) - Fixed segfault when a menu title is NULL (this happened for example on YouTube search results page) - Try to start daemon process automatically if can't open a connection - Ability to cancel downloads (through the status screen) - Fixed problem with downloads never finishing if the server sends shorter file than expected Full changelog: http://users.tkk.fi/~aajanki/vdr/webvideo/HISTORY -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.1.2
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of xineliboutput plugin the videos can be played directly without downloading them first. Changes since the last version: - Unescape the stream URL before passing it to xineliboutput to make Youtube streaming work. - Youtube: More robust parsing of search results page. Updated categories parsing according to recent changes. - Updated Italian translations (thanks to Diego Pierotto) - Fixed a typo in German translation (thanks to Halim Sahin) -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.1.4
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of xineliboutput plugin the videos can be played directly without downloading them first. Changes: 2009-05-05: Version 0.1.4 - Updated Italian translation (thanks to Diego Pierotto) - Config file for webvi for defining player programs and the address of the daemon - Streaming now reverts back to lower quality video if high quality version is not available (like downloading already did before) Video site modules: - Support for a new video site: Metacafe - Youtube: adapted parsing to comply with recent changes on Youtube. Download HD quality video when available. - YLE Areena: download high quality videos by default - Google Video: support for videos hosted on Metacafe. Made parsing a bit more robust. -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.1.5
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of xineliboutput plugin the videos can be played directly without downloading them first. Changes: 2009-05-10: Version 0.1.5 - Don't crash VDR if can't connect to the daemon - Updated to work with Python 2.6 (a parameter name has changed in asynchat) - Force the installation prefix for Python scripts to be /usr, not /usr/local - Command line argument --daemoncmd specifies the command for starting the webvid daemon -- Antti Ajanki ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.2.0
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ The Webvideo plugin is a tool for browsing and downloading videos from popular video sharing websites, such as YouTube and Google video, using VDR menu interface or a command line client. With the help of the xineliboutput plugin the videos can be played directly without downloading them first. Changes: 2010-01-17: Version 0.2.0 - The daemon is replaced by Python library with C bindings. This simplifies the invocation of the VDR plugin and the command line client. - New video service: Vimeo - Re-added support for YLE Areena (requires rtmpdump-yle from http://users.tkk.fi/~aajanki/rtmpdump-yle/index.html). - Youtube: using the official API (except for video pages), this should mean less breakage in the future. Various improvements on the menus. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.2.0
Diego Pierotto wrote: > Il 17/01/2010 21:22, Antti Ajanki ha scritto: >> New version of the Webvideo plugin is available at >> http://users.tkk.fi/~aajanki/vdr/webvideo/ >> >> > Hi, i really appreciate your work. > > I wanna ask if is possible to keep trace of search items. I explain it > better: for example i wanna download a daily tv series from YouTube and > each day i need to write the same "search criteria" but if there i a > remember search item (automatic) or save the search item (manual) i > avoid to repeat this task each day. > > Can be this possible? Or this function is already implemented and i > missed something? There is no support for that kind of automated downloading yet, but it is a good idea. I'll add it to the TODO list although I will probably focus on other features first. It might be possible to do scheduled downloads by running some other video downloading command line utility like cclive (http://code.google.com/p/cclive/) from cron. That solution obviously lacks integration to VDR. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.2.0
On Sat, 23 Jan 2010, Aimo Parru wrote: On Sunday 17 January 2010 22:22:45 Antti Ajanki wrote: New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Is there something wrong with the Makefile? I've tried everything but I cannot get through APIVERSION test. Yes, the Makefile didn't support VDR's make plugins. You should follow the installation instructions in README. I made a new bug fix release 0.2.1 that adds support for Python versions other than 2.5 and adds some support for make plugins (but you still should see README to get all required components installed). It is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ . Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.2.0
On Sun, 24 Jan 2010, Aimo Parru wrote: On Saturday 23 January 2010 20:21:36 Aimo Parru wrote: "WARNING: The following plugins have been left out due to really binary incompatibility: webvideo." Could it be libwebvi? am...@super:~/vdr-src/vdr-1.6.0$ vdr -V -P webvideo vdr: libwebvi.so.0: cannot open shared object file: No such file or directory vdr (1.6.0/1.6.0) - The Video Disk Recorder Does it work if you first run /sbin/ldconfig /usr/local/lib as root and then restart VDR? Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.2.0
On Sun, 24 Jan 2010, Aimo Parru wrote: On Sunday 24 January 2010 18:00:09 Aimo Parru wrote: On Sunday 24 January 2010 17:46:44 Aimo Parru wrote: But I've have to check how webvideo works. There is something still wrong: Webvideo: Failed to get libwebvi context If I try to use vebvi from terminal: File "/usr/local/lib/python2.5/site-packages/webvi/asyncurl.py", line 33, in SOCKET_TIMEOUT = pycurl.SOCKET_TIMEOUT AttributeError: 'module' object has no attribute 'SOCKET_TIMEOUT' Try to update your pycurl. Judging from pycurl's changelog version 7.18.2 and newer should do. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.2.0 - little patch to makefile of libwebvi
Thanks for the Makefile patch. I'll include it to the next release. Lucian Muresan wrote: > I also have some other feedback to the author: > > How could other sites like http://plus7.arte.tv or the "Mediathek" of > ZDF or 3sat be added to the templates? One would need to create XSLT templates that take the pages from the website as input, extract URLS of video streams and links, and output them in the format understood by the plugin. There is (quite minimal) documentation in doc/xslt, but it may actually be easier to see existing templates, for example youtube. I am willing to add support for more video sites to the package if somebody contributes working templates. > > Is it possible to to implement that the plugin's OSD "remembers" where > it was left when last accessed in the current VDR "session"? It's a bit > tedious to navigate through all menus again and again. You can use the green "forward" button to quickly follow the latest navigation path. > > If a search did not give the desired results, it would be useful if a > new attempt would still hold the old search keywords to be able to > slightly modify them instead of "typing" them again. Yes, I agree that it should remember the entered text. The command line client actually already does this, just the VDR plugin is still missing the functionality. > > Otherwise, really nice and interesting plugin which actually works with > youtube, unlike the ones I've tried with XBMC where they crash all the > time... > BTW, how does it handle multiple quality versions of youtube videos, > does it pick "HD" or "HQ" by itself? It downloads the best available quality. I'm planning to make this configurable so that if you have a slow connection you might want to get the low quality version always, or you might want to download HQ but stream in LQ. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.3.0
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Webvideo is a VDR plugin for downloading videos from popular video sharing webvites such as YouTube. With the help of xineliboutput plugin the videos can be played directly in VDR without downloading them first. Changes: 2010-07-12: Version 0.3.0 - Scheduled downloading - Show error details on status screen by pressing Info - Fix a crash when video URL is empty. - INI file options for controlling the download quality. - Add support for Finnish TV stations: MTV3 Katsomo, ruutu.fi, Subtv. - Make all downloads abortable. - Fixed Vimeo search. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.3.1
Hi, I just released version 0.3.1 of the webvideo plugin. The new version fixes (among other things) the incompability that was caused by Youtube recently changing their output format. The new version is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Full changelog: - Updated Italian translation (thanks to Diego Pierotto). - Fixed Youtube extractor. - Fixed Vimeo search. - Timers are no longer marked as "Unfinished" after the download has been completed. - Retry failed timers again later. Antti On 07/22/2010 03:40 PM, Halim Sahin wrote: Hello, Thanks for the new webvi version but it doesn't work in youtube. Exception occurred in multicurl processing Traceback (most recent call last): File "/usr/lib64/python2.6/site-packages/webvi/asyncurl.py", line 234, in check_completed disp.handle_completed(err, errmsg) File "/usr/lib64/python2.6/site-packages/webvi/download.py", line 278, in handle_completed self.donefunc(err, errmsg) File "/usr/lib64/python2.6/site-packages/webvi/request.py", line 525, in finished_check_url self.check_and_send_url() File "/usr/lib64/python2.6/site-packages/webvi/request.py", line 256, in check_and_send_url debug('check_and_send_url ' + url) TypeError: cannot concatenate 'str' and 'NoneType' objects Download failed: No more URLs left Did not find URL> sorry for the linebreaks, don't know how to copy the output with correct line wraps. Regards Halim ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.1
Hi, hu_emulator wrote: > Can you use xine to play the streamed U2 videos? > > If not why not? Xine is must more stable than xineliboutput. Only xineliboutput is supported at the moment, sorry. I don't know how to play videos in xine from VDR without xineliboutput. If you can provide some example code, I'll consider implementing it in webvideo. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.1
On 08/03/2010 01:02 AM, Rene wrote: Hi! Just a probably dumb question... Could it be possible to add mplayer-support too? I run my vdr through a FF-card, and therefore i don't use xineliboutput or any similar things.. Yes, I agree that mplayer support would be nice. I actually tried to implement it once but couldn't get it working properly. I'll have to take another look at some point. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.1
On 08/03/2010 11:45 AM, Mikko Tuumanen wrote: ma, 2010-08-02 kello 18:41 +0300, Antti Ajanki kirjoitti: Only xineliboutput is supported at the moment, sorry. How about transcoding or remultiplexing the downloaded videos to normal vdr recordings? Is there a way to run a command (like vdr's -r) after a video has been downloaded? Running an external commad after a download is finished sounds like a good idea. I'll implement it in the next version. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.1
On 08/03/2010 11:58 AM, Jouni Karvo wrote: On 25.07.2010 21:14, Antti Ajanki wrote: Hi, I just released version 0.3.1 of the webvideo plugin. The new version fixes (among other things) the incompability that was caused by Youtube recently changing their output format. Hi; a feature request: - could you add a method for deleting the downloaded video files? I would find this most useful - having to take a ssh connection to the HTPC for deleting files is a bit cumbersome. Currently webvideo doesn't even keep track of which files it has downloaded. I think that the proper place to delete the videos is the media player. For example in xineliboutput's media player's file list the yellow key deletes a file. Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
[vdr] [ANNOUNCE] vdr-webvideo 0.3.2
New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Webvideo is a VDR plugin for downloading videos from popular video sharing webvites such as YouTube. With the help of xineliboutput plugin the videos can be played directly in VDR without downloading them first. Changes: 2010-08-26: Version 0.3.2 - Plugin: Possibility to run a script after downloading. - New video service: MoonTV (contributed by Matti Lehtimäki). - ruutu.fi uses rtmpe for some videos. - Stream low bandwidth Youtube videos by default (configurable in /etc/webvi.conf) - Fixed Google video module. - Disabled ruutu.fi search which is not working. ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr
Re: [vdr] [ANNOUNCE] vdr-webvideo 0.3.2
On 09/11/2010 01:44 PM, Jouni Karvo wrote: On 27.08.2010 20:44, Antti Ajanki wrote: New version of the Webvideo plugin is available at http://users.tkk.fi/~aajanki/vdr/webvideo/ Tried compiling with vdr 1.7.15. Does not work, because the "vdr" include directory is under "include", not where the sources are. May I suggest adding a VDRINCLUDEDIR variable, and -I option, and removing the "vdr/" from the #include statements in the future versions. Thanks for the suggestion. I will add variable for the include dir as you proposed. I have tested it only in 1.6.0. Does it compile after changing the include path or are other modifications needed? Antti ___ vdr mailing list vdr@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr