资源说明:a repository with - maybe - useful gPodder hook scripts
# Summary This repository contains gPodder hook scripts which I use for myself. Please feel free to fork or use this repository for your own purpose. ** ATTENTION ** This repository is no longer being developed. Please use our new repository at https://github.com/gpodder/gpodder-hook-scripts ## gPodder hooks infrastructure (recommended way) ### What are hooks in gPodder? Hooks are python scripts loaded by gPodder at runtime. Each script must define a class named "gPodderHooks", otherwise it will be ignored. ### How to configure You could copy or link the scripts in this repository to ~/.config/gpodder/hooks/ and everything should work fine. For gPodder "tres" (3.x branch), you need to place them in $GPODDER_HOME/Hooks/ (where $GPODDER_HOME defaults to ~/gPodder/ if you have not set it manually) ### How to create my own hook script? See example documentation at [hooks.py](http://repo.or.cz/w/gpodder.git/blob/HEAD:/doc/dev/examples/hooks.py). In the "tres" branch, the example is in examples/hooks.py. # Hooks list ## bittorrent Automatically open .torrent files with a BitTorrent client. ## rename_downloads Rename downloaded episodes based on their episode title in the feed. ## mp3split Split mp3 files in ranges of 10 minutes when the files are copied to the device. ### Requirements - mp3splt binary on the path. Homepage: http://mp3splt.sourceforge.net/ ## reset_etag Resets the etag and last modified information for a podcast. This could be necessary if the server lies about the last modified state. This will cause gPodder to reload (and re-parse) the feed every time ### Requirements No requirements ## rm_ogg_coover_hook This hook scripts removes coverart from all downloaded ogg files. The reason for this script is that my media player (MEIZU SL6) could not handle ogg files with included coverart. ### Requirements - python-mutagen Homepage: http://code.google.com/p/mutagen/ Mutagen is a Python module to handle audio metadata. ## rockbox_mp4_convert This script converts any mp4 videos to play on a Sansa Fuze with rockbox installed ### Requirements - python-kaa-metadata Homepage: http://freevo.org/kaa Kaa Metadata is a Media Meta Data retrieval framework. It retrieves metadata from mp3, ogg, avi, jpg, tiff and other file formats. Among others it thereby parses ID3v2, ID3v1, EXIF, IPTC and Vorbis data into an object oriented struture. - python-dbus simple interprocess messaging system (Python interface) - ffmpeg Homepage: http://www.ffmpeg.org/ Multimedia player, server, encoder and transcoder ## tagging_hook This hook script adds episode title and podcast title to the audio file The episode title is written into the title tag The podcast title is written into the album tag ### Requirements - python-mutagen Homepage: http://code.google.com/p/mutagen/ Mutagen is a Python module to handle audio metadata. ## tfh_shownotes_hook "Tin Foil Hat Show" is a podcast produced by CafeNinja. http://cafeninja.blogspot.com/search/label/tinfoilhat There is one special thing in this show. The show notes are hide in the FRONT_COVER image which is included in the mp3 file. This is the only place where you can find the show notes. So you have to run a few commands until you are able to read the notes. This is the reason why I created some hooks to get this show notes automatically after I downloaded an episode with gPodder (http://gpodder.org/) This github repository includes two options to configure your gPodder installation with this feature. ### Requirements - python-eyed3 Homepage: http://eyed3.nicfit.net/ eyeD3 is a Python module and program for processing ID3 tags - steghide Homepage: http://steghide.sourceforge.net/ Steghide is a steganography program that is able to hide data in various kinds of image- and audio-files. ## zpravy The $subj podcast rss does not contain id and pubdate. Because of the missing guid gPodder reports always "no new episodes" for the podcast. This hook script fixes this. The pubdate can be calculated from the audio file url and I used the same number as guid. ## enqueue_in_vlc This hook shows a new feature of the gPodder "tres" branch - you can now add items to the episode list context menu. Each item needs to have a label and a callable that will take a list of selected episodes. This script shows you how to implement a "Enqueue in VLC" context menu item using hooks.
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。