Vodcatcher-plugin
Inhaltsverzeichnis |
Beschreibung
Autor: Tobias Grimm
Mit diesem Plugin können Internet-Videos wiedergegeben oder aufgenommen werden. Der Name leitet sich von Vodcasting ab, der seinerseits von Podcasting abstammt.
Ähnlich wie beim Podcatcher-Plugin für Podcasting wird auch im Vodcatcher in einer Konfigurationsdatei (vodcatchersources.conf) eine oder mehrere URL angegeben. Diese URL verweisen auf eine Datei ("Feed"), die alle vorhandenen Videos einer Website angibt. So sind beispielsweise unter http://videocast.srtwist.net/ alle Videos des ZDF und deren Adresse aufgelistet.
Das Vodcatcher-Plugin liest aus der Konfigurationdate alle Inhalts-URL aus und listet die dadrin verzeichneten Videos auf. Der VDR-Anwender wählt ein Video aus, worauf der Vodcatcher die Adresse des Videos dem mplayer-plugin zu Abspielen übergibt. Alternativ ist auch die Aufnahme der Feeds möglich.
Bilder
Softwareanforderungen
- mplayer-plugin
- Shell Script (mplayer.sh) incl. Playlist Support
- cURL (dev)
Konfiguration
Im Pluginverzeichnis muß eine Datei namens vodcatchersources.conf vorhanden sein. Dort sind die URL der Feeds anzugeben. Liste möglicher Inhalte (bitte mit eigenen Beiträgen ergänzen bzw. nicht mehr funktionierende Quellen hier löschen):
# sources for vdr-vodcatcher #Die Sendung mit der Maus FEED_URL=http://podcast.wdr.de/maus.xml #ZDF-Kram FEED_URL=http://videocast.srtwist.net/ #Galacticast FEED_URL=http://feeds.feedburner.com/galacticast #Quarks & Co FEED_URL=http://podcast.wdr.de/quarks.xml #Computer Club 2 FEED_URL=http://www.cczwei.de/rss_tvissues.php #3sat Mediathek FEED_URL=http://www.3sat.de/mediathek/rss/mediathek.xml #Software Hardware und der ganze Rest FEED_URL=http://feeds.feedburner.com/SoftwareHardwareUndDerGanzeRest #Angeklickt WDR Fernsehen FEED_URL=http://www.wdr.de/themen/computer/angeklickt/videopodcast.php #DigitalUpgrade FEED_URL=http://feeds.feedburner.com/digitalupgrade #OpenSource-Podcast FEED_URL=http://www.opensource-podcast.de/feed/ #videocast.srtwist.net FEED_URL=http://videocast.srtwist.net/ #Probot World of Amazing Action-Figure Adventure! FEED_URL=http://www.probotproductions.com/vidcasts/ProbotVodcast.xml #Adventures of Thomas Brin FEED_URL=http://podcasts.thomasbrin.com/BrinRSS #Film- und Kino- Trailer FEED_URL=http://feeds.feedburner.com/Film-UndKino-trailerVideopodcast?format=xml #Wöchentliches Office VideoCast FEED_URL=http://www.office-podcast.de/feed/ #Kino Trailer FEED_URL=http://rss.dw-world.de/atom/podcast_kino #Stiftung Warentest FEED_URL=http://www.test.de/rss/presse/video-podcast #PC-WELT TV FEED_URL=http://www.pcwelt.de/rss/pcwtv.xml #Diggnation FEED_URL=http://revision3.com/diggnation/feed/xvid-large #Tekzilla FEED_URL=http://revision3.com/tekzilla/feed/xvid-large/?subshow=false #Cranky Geeks FEED_URL=http://rssnewsapps.ziffdavis.com/audioblogs/crankygeeks/cg.wmv.xml #DL.TV FEED_URL=http://rssnewsapps.ziffdavis.com/audioblogs/DLTV.xvid.xml #GeekBrief TV FEED_URL=http://www.podshow.com/feeds/hd.xml #Internet Superstar FEED_URL=http://revision3.com/internetsuperstar/feed/xvid-large?subshow=false #Systm FEED_URL=http://revision3.com/systm/feed/xvid-large #Tiki Bar FEED_URL=http://feeds.feedburner.com/TikiBarTV
Tipps
Playlist Support hinzufügen
Nach dieser Zeile.
if ! test -r "$FILE"; then echolog "*** ERROR: Make sure $FILE exists and is readable - otherwise it cannot be played ;-)"; exit; fi
Folgendes in die mplayer.sh eintragen.
# playlist support case "$FILE" in *.pls | *.m3u | *.asx) first=`grep -v -m1 "^#" $FILE` FILE="$first" debugvar Playlist: FILE "$FILE" esac
m4v Dateien werden nicht abgespielt
Falls es bei m4v Daten zu Problemen kommt (zu schnelles Abspielen und keinen Ton) den folgenden Workaround in der mplayer.sh einpflegen.
Quelle: http://www.vdrportal.de/board/thread.php?postid=788888#post788888
# Workaround for mp4 / mov if test "${SUFFIX}" == ".mov" -o "${SUFFIX}" == ".MOV" -o "${SUFFIX}" == ".mp4" || `echo "$VIDEO_FORMAT"| egrep -q "avc1"` || `echo "$VIDEO_FORMAT"| egrep -q "jpeg"`; then CMDLINE="$MPLAYER -vo $VO $AOUT -demuxer mov -vf scale=656:492${DETC},expand=720:576:-1:-1:0,$VOP:$NEW_FPS $SPEED $FDSTR $CACHESTR $REMOTE $SUBTITLES $USERDEF $FORCEIDX" else CMDLINE="$MPLAYER -vo $VO $AOUT -vf scale=$NEW_X:${NEW_Y}${DETC},expand=$NEW_X:$REAL_Y:-1:-1:0,$VOP:$NEW_FPS $SPEED $FDSTR $CACHESTR $REMOTE $SUBTITLES $USERDEF $FORCEIDX" fi
Feed-Quellen
- WDR Video-Podcasts
- 3sat Mediathek
- Computerclub Zwei
- Vodcatcher Helper - Vodcatcher Helper ist ein Programm, das verschiedene Internetseiten nach Videos durchsucht um die Ergebnisse als RSS-Feed zur Verfügung zu stellen, so dass das Vodcatcher-Plugin darauf zugreifen kann. Unterstützt wird unter Anderem die ZDFmediathek, Arte+7 und RTLnow.
Versions-Historie
Version | Datum | Beschreibung | Link |
---|---|---|---|
0.2.1 | 10.08.2008 |
|
[1] |
0.2.0 | 09.08.2008 |
|
[2] |