I have do the modification, added an audio, but the title don't change. I have do this modification :
Code:
if (array_key_exists('id3v2', $ThisFileInfo['tags'])) {
$entitytags['Piste'] = $ThisFileInfo['tags']['id3v2']['title'][0];
$entitytags[Auteur'] = $ThisFileInfo['tags']['id3v2']['artist'][0];
$entitytags['Th?me'] = $ThisFileInfo['tags']['id3v2']['album'][0];
$entitytags['Genre'] = $ThisFileInfo['tags']['id3v2']['genre'][0];
$entitytags['Year'] = $ThisFileInfo['tags']['id3v2']['year'][0];
}
elseif (array_key_exists('id3v1', $ThisFileInfo['tags'])) {
$entitytags['Piste'] = $ThisFileInfo['tags']['id3v1']['title'][0];
$entitytags['Auteur'] = $ThisFileInfo['tags']['id3v1']['artist'][0];
$entitytags['Th?me'] = $ThisFileInfo['tags']['id3v1']['album'][0];
$entitytags['Genre'] = $ThisFileInfo['tags']['id3v1']['genre'][0];
$entitytags['Year'] = $ThisFileInfo['tags']['id3v1']['year'][0];
}
if (array_key_exists('playtime_string', $ThisFileInfo)) {
$entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
}
}
break;
case 'wma':
$FileName = ldm_cleanto_fopen($linkurl);
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($FileName);
if (array_key_exists('playtime_string', $ThisFileInfo)) {
$entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
}
break;
case 'jpg':
case 'jpeg':
$FileName = ldm_cleanto_fopen($linkurl);
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($FileName);
if (array_key_exists('jpg', $ThisFileInfo)) {
$entitytags['DateTime'] = $ThisFileInfo['jpg']['exif']['IFD0']['DateTime'];
$entitytags['Height'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Height'];
$entitytags['Width'] = $ThisFileInfo['jpg']['exif']['COMPUTED']['Width'];
}
break;
case 'avi':
case 'flv':
case 'mpg':
case 'mpeg':
case 'mov':
case 'rm':
$FileName = ldm_cleanto_fopen($linkurl);
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($FileName);
if (array_key_exists('playtime_string', $ThisFileInfo)) {
$entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
}
if (isset($ThisFileInfo["video"]["resolution_x"])) {
$entitytags['Height'] = $ThisFileInfo['video']['resolution_y'];
$entitytags['Width'] = $ThisFileInfo['video']['resolution_x'];
}
break;
case 'asf':
case 'wmv':
$FileName = ldm_cleanto_fopen($linkurl);
$getID3 = new getID3;
$ThisFileInfo = $getID3->analyze($FileName);
if (array_key_exists('playtime_string', $ThisFileInfo)) {
$entitytags['Dur?e'] = $ThisFileInfo['playtime_string'];
}
if (isset($ThisFileInfo["video"]["streams"])) {
foreach ($ThisFileInfo["video"]["streams"] as $thisstream) {
if (isset($thisstream['resolution_x'])) {
$entitytags['Height'] = $thisstream['resolution_y'];
$entitytags['Width'] = $thisstream['resolution_x'];
break;
}
}
}
break;
}
if (count($entitytags)) {
require_once(DIR . '/includes/local_links_entities.php');
}
foreach ($entitytags as $entityname=>$entityvalue) {
$entityexists = 0;
$entitygroup = ($links_defaults['id3tag_enhance_group'] ? $links_defaults['id3tag_enhance_group'] : ID3ENTITYGROUP);
ldm_define_entity($entityname, $entitygroup, ENTITY_TYPE_TEXT, 1);
if (is_array($linkentities)) {
foreach ($linkentities as $thisentity) {
if ($thisentity['entityname']==$entityname and $thisentity['entityset']) {
$entityexists = 1; // User entry takes priority
break;
}
}
}
if (!$entityexists) {
$linkentities[] = array('entityname'=>$entityname, 'entityvalue'=>$entityvalue, 'entityset'=>1);
}
}
}
}