podcast
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 73
MP3::Podcast 0.05
MP3::Podcast is a Perl extension for podcasting directories full of MP3 files. more>>
MP3::Podcast is a Perl extension for podcasting directories full of MP3 files.
SYNOPSIS
use MP3::Podcast;
my $dirbase = shift;
my $urlbase = shift;
my $dir = shift;
my $pod = MP3::Podcast->new($dirbase,$urlbase);
my $rss = $pod->podcast( $dir, "This is a test" );
print $rss->as_string;
ABSTRACT
Create podcast easily from directories, using MP3s own info.
Creates a podcast, basically a RSS feed for a directory full of MP3 files. Takes information from the MP3 files themselves; it needs MP3 files with their ID tags completed.
The bundle includes two programs in the C< examples > dir: C< gen-podcast.pl >, used this way:
bash% ./gen-podcast.pl < dirbase > < urlbase > < dir to scan > that generates a static RSS from a dir, and C< podcast.cgi >, to use from a webserver. To use it, copy podcast.cgi and podcast.conf to a cgi-serviceable dir; edit podcast.conf to your liking and copy it to the directory you want. Copy also .podcast to the directory you want served as a podcast (this is done mainly to avoid dir-creeping), and also drop edit also the path to fetch the MP3::Podcast lib, and call it with C< http://my.host.com/cgi-bin/podcast.cgi/< dirname >.rss
The name of the directory to scan will be taken from the URI.
<<lessSYNOPSIS
use MP3::Podcast;
my $dirbase = shift;
my $urlbase = shift;
my $dir = shift;
my $pod = MP3::Podcast->new($dirbase,$urlbase);
my $rss = $pod->podcast( $dir, "This is a test" );
print $rss->as_string;
ABSTRACT
Create podcast easily from directories, using MP3s own info.
Creates a podcast, basically a RSS feed for a directory full of MP3 files. Takes information from the MP3 files themselves; it needs MP3 files with their ID tags completed.
The bundle includes two programs in the C< examples > dir: C< gen-podcast.pl >, used this way:
bash% ./gen-podcast.pl < dirbase > < urlbase > < dir to scan > that generates a static RSS from a dir, and C< podcast.cgi >, to use from a webserver. To use it, copy podcast.cgi and podcast.conf to a cgi-serviceable dir; edit podcast.conf to your liking and copy it to the directory you want. Copy also .podcast to the directory you want served as a podcast (this is done mainly to avoid dir-creeping), and also drop edit also the path to fetch the MP3::Podcast lib, and call it with C< http://my.host.com/cgi-bin/podcast.cgi/< dirname >.rss
The name of the directory to scan will be taken from the URI.
Download (0.005MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1083 downloads
Podcast Cleanup 0.1
Podcast Cleanup cleans up old podcast files based on various criteria. more>>
Amarok is a wonderful media player and audio library management tool for Linux. Podcast Cleanup allows for extensions by third parties via a nice script system.
Amarok has some in-built support for subscribing to podcasts, however, at time of writing, there is no convenient way to manage deletion of downloaded podcast episodes en-masse.
Presently, the only way to delete downloaded podcast files from amarok is to traverse the podcast list, right clicking on each downloaded podcast episode, and selecting delete from the contect menu. This is quite cumbersome, particularly considering the fact that ever deletion provokes a confirmation dialog.
I listen to a lot of podcasts, and I wanted a better way to manage my downloaded podcast files, so I wrote a small script to delete downloaded podcast files.
The script can delete downloaded podcasts, either unconditionally, or just the listened podcasts, or listend-to podcasts which are older than some age (expressed in hours, days, weeks or months.
Its possible to specify cleanup criteria for startup, and at some regular time interval (after the initial check).
Its possible to request confirmation before deletion is done, and to request a notification when files have been cleaned up.
<<lessAmarok has some in-built support for subscribing to podcasts, however, at time of writing, there is no convenient way to manage deletion of downloaded podcast episodes en-masse.
Presently, the only way to delete downloaded podcast files from amarok is to traverse the podcast list, right clicking on each downloaded podcast episode, and selecting delete from the contect menu. This is quite cumbersome, particularly considering the fact that ever deletion provokes a confirmation dialog.
I listen to a lot of podcasts, and I wanted a better way to manage my downloaded podcast files, so I wrote a small script to delete downloaded podcast files.
The script can delete downloaded podcasts, either unconditionally, or just the listened podcasts, or listend-to podcasts which are older than some age (expressed in hours, days, weeks or months.
Its possible to specify cleanup criteria for startup, and at some regular time interval (after the initial check).
Its possible to request confirmation before deletion is done, and to request a notification when files have been cleaned up.
Download (0.030MB)
Added: 2006-09-26 License: GPL (GNU General Public License) Price:
1123 downloads
Podcast::Publisher 0.50
Podcast::Publisher is a Perl module for creating and managing podcasts. more>>
Podcast::Publisher is a Perl module for creating and managing podcasts.
SYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
<<lessSYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
Download (0.012MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1081 downloads
Add Podcast to amaroK 1.0
Add Podcast to amaroK is a script that allow you to add Podcasts to amaroK with just 3 clicks. more>>
This script is adding a new action item to Konqueror, this will allow you to add Podcasts to amaroK with just 3 clicks.
The item is adding the selected URL to amaroKs Podcast database.
Note that the script is not very dynamic. It will not be able to recognize PHP based Podcasts if its not having the correct mimetype (RDF/RSS/XML).
<<lessThe item is adding the selected URL to amaroKs Podcast database.
Note that the script is not very dynamic. It will not be able to recognize PHP based Podcasts if its not having the correct mimetype (RDF/RSS/XML).
Download (0.008MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1397 downloads
MP3::PodcastFetch 1.01
MP3::PodcastFetch is a Perl module to fetch and manage a podcast subscription. more>>
MP3::PodcastFetch is a Perl module to fetch and manage a podcast subscription.
SYNOPSIS
use MP3::PodcastFetch;
my $feed = MP3::PodcastFetch->new(-base => /tmp/podcasts,
-rss => http://www.npr.org/rss/podcast.php?id=500001
-rewrite_filename => 1,
-upgrade_tag => auto);
$feed->fetch_pods;
print "fetched ",$feed->fetched," new podcastsn";
for my $file ($feed->fetched_files) {
print $file,"n";
}
This package provides a convenient and simple way of mirroring the podcasts described by an RSS feed into a local directory. It was written as the backend for the fetch_pods.pl script.
To use it, create an MP3::PodcastFetch object with the required -base and -rss arguments. The podcasts listed in the RSS subscription file located at the -rss URL will be mirrored into one or more subdirectories located beneath the path at -base. One subdirectory will be created for each channel specified by the RSS. Additional new() arguments control optional features of this module.
Once the object is created, call its fetch_pods() method to download the RSS file, parse it, and mirror the subscribed podcasts locally.
<<lessSYNOPSIS
use MP3::PodcastFetch;
my $feed = MP3::PodcastFetch->new(-base => /tmp/podcasts,
-rss => http://www.npr.org/rss/podcast.php?id=500001
-rewrite_filename => 1,
-upgrade_tag => auto);
$feed->fetch_pods;
print "fetched ",$feed->fetched," new podcastsn";
for my $file ($feed->fetched_files) {
print $file,"n";
}
This package provides a convenient and simple way of mirroring the podcasts described by an RSS feed into a local directory. It was written as the backend for the fetch_pods.pl script.
To use it, create an MP3::PodcastFetch object with the required -base and -rss arguments. The podcasts listed in the RSS subscription file located at the -rss URL will be mirrored into one or more subdirectories located beneath the path at -base. One subdirectory will be created for each channel specified by the RSS. Additional new() arguments control optional features of this module.
Once the object is created, call its fetch_pods() method to download the RSS file, parse it, and mirror the subscribed podcasts locally.
Download (0.028MB)
Added: 2007-01-08 License: Perl Artistic License Price:
1019 downloads
importOpmlAsPodcast script 0.2
importOpmlAsPodcast script imports OPML lists with urls to podcasts. more>>
importOpmlAsPodcast script imports OPML lists with urls to podcasts, which are exported by many podcast portals and podcatchers, easily into amaroK (Vers. 1.3.3 up).
The script first opens a "file open dialog" with which you can choose a OPML (XML) file locally from your computer or from a remote location.
The script parses the file and looks for RSS-feeds. There has to be a parameter called xmlUrl in a tag called outline for the script to be able to do that.
<<lessThe script first opens a "file open dialog" with which you can choose a OPML (XML) file locally from your computer or from a remote location.
The script parses the file and looks for RSS-feeds. There has to be a parameter called xmlUrl in a tag called outline for the script to be able to do that.
Download (0.002MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
Kwiki::Podcas 0.01
Kwiki::Podcast is a Perl module for podcasting in a Kwiki way. more>>
Kwiki::Podcast is a Perl module for podcasting in a Kwiki way.
INSTALLATION
kwiki -install Kwiki::Podcast
This plugin offer an Kwiki action to generate podcast rss. User simply put down a mp3 URL in a page, and leave the rest to Kwiki. For example, you only have to write something like:
My Podcast Try. This is my first podcast song, please
take a look at it.
http://foobar.org/podcast/first.mp3
With proper user preference, your podcast will have proper publisher tag too.
Subscribe can address your podcast RSS URL from Kwikis toolbar.
CONFIGURATION
This plugin offer 3 configuratino keywords:
podcast_title
General title for you Podcasting
podcast_publisher
Your name
podcast_description
General description for this podcast.
<<lessINSTALLATION
kwiki -install Kwiki::Podcast
This plugin offer an Kwiki action to generate podcast rss. User simply put down a mp3 URL in a page, and leave the rest to Kwiki. For example, you only have to write something like:
My Podcast Try. This is my first podcast song, please
take a look at it.
http://foobar.org/podcast/first.mp3
With proper user preference, your podcast will have proper publisher tag too.
Subscribe can address your podcast RSS URL from Kwikis toolbar.
CONFIGURATION
This plugin offer 3 configuratino keywords:
podcast_title
General title for you Podcasting
podcast_publisher
Your name
podcast_description
General description for this podcast.
Download (0.008MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1074 downloads
PodMail 1.0
PodMail brings together open-source telephony and Podcasting to create a new, amazing way of accessing voicemail and podcasting. more>>
PodMail brings together telephony and podcasting by integrating with Asterisk to provide a secure podcast of your voicemail.
PodMail integrates with Asterisk to provide a secure podcast of your voicemail. Use PodMail to subscribe to your own voicemail box. Each time you dock your iPod, your new voicemails will sync right along. Listen to your voicemail at your convenience and without using cell minutes.
PodMail also allows for a brand new type of PodCasting. Unchain Podcasting from the computer! Configure PodMail as public and you have a ready-to-run PodCast. Updating your Podcast is as easy as phone call. Moblogging has never been so easy or flexible.
PodMail is flexible; configurable to integrate with Asterisk::LDAP or use regular Asterisk flat files to provide a Podcast requiring authentication. Safe, secure voicemail right to your favourite Podcasting software.
Use PodMail to subscribe to your own voicemail box. Each time you sync your iPod your new voicemails go right along. Undock and go! Listen to your voicemail at your convenience and without using cell minutes.
PodMail also allows for a brand new type of Podcasting. Configure PodMail without a login and you have a ready-to-run Podcast without needing a computer. Produce your Podcast from anywhere in the world... all you need is a phone!
<<lessPodMail integrates with Asterisk to provide a secure podcast of your voicemail. Use PodMail to subscribe to your own voicemail box. Each time you dock your iPod, your new voicemails will sync right along. Listen to your voicemail at your convenience and without using cell minutes.
PodMail also allows for a brand new type of PodCasting. Unchain Podcasting from the computer! Configure PodMail as public and you have a ready-to-run PodCast. Updating your Podcast is as easy as phone call. Moblogging has never been so easy or flexible.
PodMail is flexible; configurable to integrate with Asterisk::LDAP or use regular Asterisk flat files to provide a Podcast requiring authentication. Safe, secure voicemail right to your favourite Podcasting software.
Use PodMail to subscribe to your own voicemail box. Each time you sync your iPod your new voicemails go right along. Undock and go! Listen to your voicemail at your convenience and without using cell minutes.
PodMail also allows for a brand new type of Podcasting. Configure PodMail without a login and you have a ready-to-run Podcast without needing a computer. Produce your Podcast from anywhere in the world... all you need is a phone!
Download (0.012MB)
Added: 2006-01-20 License: GPL (GNU General Public License) Price:
1373 downloads
PodsBlitz 1.1.2
PodsBlitz copies songs from an iPod to a computer, thus addressing a shortcoming of the iTunes/iPod combo. more>>
Did you ever want to copy songs off your iPod, but all you could find were MP3 files with cryptic names ?
PodsBlitz application gives you access to your music. Just download the file to your iPod and double-click to start, thats it.
PodsBlitz was tested with an iPod Photo (synchronized by iTunes 4.9) on Mac OS 10.3.9 and Windows XP.
Since PodsBlitz is a Java application, you will need a Java Runtime Environment version 1.4 or higher. This should not be a problem on most recent Mac OS X releases.
PodsBlitz is distributed under the GNU General Public License.
Version restrictions:
Linux - PodsBlitz starts, but copying fails immediately:
- Please check the folder "iPod_Control/Music" on your iPod. If it contains folders called "fXX" instead of "FXX", your iPod needs to be mounted differently. (More information can be found on the mount man-page under "shortname" in the vfat section.)
Enhancements:
- A problem on Windows caused by folder names ending in a space has been fixed, as was the grouping of Podcasts.
- There were minor string changes in the UI.
<<lessPodsBlitz application gives you access to your music. Just download the file to your iPod and double-click to start, thats it.
PodsBlitz was tested with an iPod Photo (synchronized by iTunes 4.9) on Mac OS 10.3.9 and Windows XP.
Since PodsBlitz is a Java application, you will need a Java Runtime Environment version 1.4 or higher. This should not be a problem on most recent Mac OS X releases.
PodsBlitz is distributed under the GNU General Public License.
Version restrictions:
Linux - PodsBlitz starts, but copying fails immediately:
- Please check the folder "iPod_Control/Music" on your iPod. If it contains folders called "fXX" instead of "FXX", your iPod needs to be mounted differently. (More information can be found on the mount man-page under "shortname" in the vfat section.)
Enhancements:
- A problem on Windows caused by folder names ending in a space has been fixed, as was the grouping of Podcasts.
- There were minor string changes in the UI.
Download (0.080MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1049 downloads
Podget 0.5.8
Podget is a Bash script to automate the downloading Podcast audio content from RSS feeds. more>>
Podget is a project that can automate the downloading Podcast audio content from RSS feeds (such as those listed at Ipodder.org), storing it in categories & folders, and automatically creating a playlist for new content.
Enhancements:
- A filename format issue with the BBC World News Bulletin was fixed.
- Downloaded files named filename.mp3?123456 and now converted to filename123456.mp3.
- Support for creating ASX playlists for Windows Media Player was added.
<<lessEnhancements:
- A filename format issue with the BBC World News Bulletin was fixed.
- Downloaded files named filename.mp3?123456 and now converted to filename123456.mp3.
- Support for creating ASX playlists for Windows Media Player was added.
Download (0.008MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1016 downloads
Podracer 1.4
Podracer is a podcast downloader. more>>
Podracer is a podcast downloader. It takes a file with the URLs to all your podcast rss feeds and goes and gets the mp3s and stores them in a specified location. Podracer is a Bourne Shell script with an internal BitTorrent downloader written in Python.
Main features:
- Catchup feature updates the log without downloading all podcasts
- Run as a cron job to automatically receive podcasts
- Properly fails (with no error message for the sake of cron) if already running
- Download podcast enclosures of any file format
- Support for BitTorrent downloading and seeding of podcasts
- Configurable seed time management - seed torrents for an hour or a day
- Background torrent seeding continues after program ends and stops automatically
- System-wide and user-specific configuration
- User-specific subscription file and podcast download directories
- Commentable subscription file - go ahead and mark it up
- Fully configurable placement of files and directories
- Support for dynamic creation of download directories, i.e. based on date/time
- Appears in podcasters logs as a podcast receiver
- Automatic creation of m3u playlists
- User may request that m3u not be created
- Automatic removal of empty download directories
- Your suggestions...
<<lessMain features:
- Catchup feature updates the log without downloading all podcasts
- Run as a cron job to automatically receive podcasts
- Properly fails (with no error message for the sake of cron) if already running
- Download podcast enclosures of any file format
- Support for BitTorrent downloading and seeding of podcasts
- Configurable seed time management - seed torrents for an hour or a day
- Background torrent seeding continues after program ends and stops automatically
- System-wide and user-specific configuration
- User-specific subscription file and podcast download directories
- Commentable subscription file - go ahead and mark it up
- Fully configurable placement of files and directories
- Support for dynamic creation of download directories, i.e. based on date/time
- Appears in podcasters logs as a podcast receiver
- Automatic creation of m3u playlists
- User may request that m3u not be created
- Automatic removal of empty download directories
- Your suggestions...
Download (0.022MB)
Added: 2006-02-20 License: MIT/X Consortium License Price:
1349 downloads
Podalyzer 0.5
Podalyzer scans one or more Web server log files, extracts entries that result from downloads of media files. more>>
Podalyzer scans one or more Web server log files, extracts entries that result from downloads of media files like podcasts, and generates a report based on those entries.
In addition to reporting the number and size of downloaded files, it generates a number of graphs showing downloads over time, downloads per show and (if the Geo::IP module is installed) a breakdown by country.
<<lessIn addition to reporting the number and size of downloaded files, it generates a number of graphs showing downloads over time, downloads per show and (if the Geo::IP module is installed) a breakdown by country.
Download (0.021MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1351 downloads
TivoPod 3
TivoPod is a transcoding and podcasting agent that extracts content from the TiVo Now Playing list. more>>
TivoPod project is a podcasting and transcoding agent that extracts content from the TiVo "Now Playing" list and serves it up as a video podcast for iPods, PSPs, and other portable media devices.
Enhancements:
- This release resolves some minor defects and adds a system status/monitoring page, as well as other small enhancements.
<<lessEnhancements:
- This release resolves some minor defects and adds a system status/monitoring page, as well as other small enhancements.
Download (6.1MB)
Added: 2007-05-01 License: MIT/X Consortium License Price:
906 downloads
CastPodder 5.0
CastPodder is a media aggregator that automatically downloads podcasts to your computer or portable device. more>>
CastPodder is a media aggregator that automatically downloads podcasts to your computer or portable device, leaving you one click away from the latest media feeds.
CastPodder is based on the iPodder idea of Adam Curry.
<<lessCastPodder is based on the iPodder idea of Adam Curry.
Download (2.88MB)
Added: 2006-04-29 License: GPL (GNU General Public License) Price:
1274 downloads
Armangils podcatcher 3.0.0
Armangils podcatcher is a podcast client for the command line. more>>
Armangils podcatcher is a podcast client for the command line. It provides several download strategies (new shows only, back-catalog allowed, etc), supports BitTorrent, offers cache management, and generates playlists for MP3 player applications.
Armangils podcatcher project is written in Ruby, and runs on Linux (tested), MacOS, Windows and many other operating systems.
Usage is fairly straightforward: podcatcher subscriptions.opml > latest.m3u downloads the latest subscribed podcasts into the current directory and generates a playlist.
OPML URLs are also allowed as parameters, so that listening to the most popular podcasts is as easy as typing something like podcatcher http://podcastalley.com/PodcastAlleyTop50.opml > latest.m3u.
For help, use podcatcher -h.
Enhancements:
- This release adds the --cachedir option for explicitly specifying the content cache directory independently from the state directory (specified using --dir), the --language option for selecting feeds by language, the --horizon option that prevents the downloading of content older than a given date, the --restrictednames option for using content file names that are acceptable for restrictive filesystems such as VFAT, and more robust handling of feeds that use the Media RSS module.
- A bug in update checking has been fixed.
<<lessArmangils podcatcher project is written in Ruby, and runs on Linux (tested), MacOS, Windows and many other operating systems.
Usage is fairly straightforward: podcatcher subscriptions.opml > latest.m3u downloads the latest subscribed podcasts into the current directory and generates a playlist.
OPML URLs are also allowed as parameters, so that listening to the most popular podcasts is as easy as typing something like podcatcher http://podcastalley.com/PodcastAlleyTop50.opml > latest.m3u.
For help, use podcatcher -h.
Enhancements:
- This release adds the --cachedir option for explicitly specifying the content cache directory independently from the state directory (specified using --dir), the --language option for selecting feeds by language, the --horizon option that prevents the downloading of content older than a given date, the --restrictednames option for using content file names that are acceptable for restrictive filesystems such as VFAT, and more robust handling of feeds that use the Media RSS module.
- A bug in update checking has been fixed.
Download (0.020MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
830 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 podcast 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