Description
Import a Recording and all its tracks using the getID3() PHP library
Usage
oik_tunes_import_recording( $folder );Parameters
- $folder
- ( mixed ) required –
Returns
voidSource
File name: oik-tunes/admin/oik-tunes.phpLines:
1 to 12 of 12
function oik_tunes_import_recording( $folder ) { $folder = stripslashes( $folder ); p( "Analyzing $folder "); if ( !class_exists( "getID3" ) ) { p( "Loading getID3 from oik-tunes" ); oik_require( "getid3/getid3.php", "oik-tunes" ); } // Initialize getID3 engine $getID3 = new getID3; $getID3->setOption( array( 'encoding' => "UTF-8" )); oik_tunes_analyze( $folder, $getID3 ); }View on GitHub
Called by
1 to 2 of 2
Invoked by
Calls
1 to 2 of 2
Call hooks
API Letters:
