dir2cast 0.9 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News dir2cast 0.9 (Default branch)
# 1  
Old 03-02-2008
dir2cast 0.9 (Default branch)

dir2cast is a Web-based script to turn a directoryof MP3s into a podcast automatically. It willautomatically use the ID3 fields from your MP3sfor the Author, Title, and similar fields in thepodcast feed. ID3v2 is supported. The generatedfeed is cached and only updated if something inthe directory changes. The generated feeds havealmost full support for iTunes podcast tags. RSSDescription, iTunes Subtitle, and iTunes Summarycan be set by dropping text files in the samefolder.License: BSD License (revised)Changes:
Configuration is now done via one or more .ini files. You can have one for the whole installation, and one per MP3 folder that you cast; thus, casting several folders from one installation is now properly supported.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
ID3_GET_VERSION(3)							 1							ID3_GET_VERSION(3)

id3_get_version - Get version of an ID3 tag

SYNOPSIS
int id3_get_version (string $filename) DESCRIPTION
id3_get_version(3) retrieves the version(s) of the ID3 tag(s) in the MP3 file. If a file contains an ID3 v1.1 tag, it always contains a 1.0 tag, as version 1.1 is just an extension of 1.0. PARAMETERS
o $filename - The path to the MP3 file Instead of a filename you may also pass a valid stream resource RETURN VALUES
Returns the version number of the ID3 tag of the file. As a tag can contain ID3 v1.x and v2.x tags, the return value of this function should be bitwise compared with the predefined constants ID3_V1_0, ID3_V1_1 and ID3_V2. EXAMPLES
Example #1 id3_get_version(3) example <?php $version = id3_get_version( "path/to/example.mp3" ); if ($version & ID3_V1_0) { echo "Contains a 1.x tag "; } if ($version & ID3_V1_1) { echo "Contains a 1.1 tag "; } if ($version & ID3_V2) { echo "Contains a 2.x tag "; } ?> The above example will output something similar to: Contains a 1.x tag Contains a 1.1 tag SEE ALSO
id3_set_tag(3), id3_get_tag(3), id3_remove_tag(3). PHP Documentation Group ID3_GET_VERSION(3)