Home
last modified time | relevance | path

Searched refs:tagwriter (Results 1 – 3 of 3) sorted by relevance

/plugin/jplayer/vendor/james-heinrich/getid3/demos/
H A Ddemo.simple.write.php26 $tagwriter = new getid3_writetags; variable
28 $tagwriter->filename = 'c:/file.mp3';
31 $tagwriter->tagformats = array('id3v2.3');
34 $tagwriter->overwrite_tags = true; // if true will erase existing tag data and write only passe…
36 $tagwriter->tag_encoding = $TextEncoding;
37 $tagwriter->remove_other_tags = true;
51 $tagwriter->tag_data = $TagData;
54 if ($tagwriter->WriteTags()) {
56 if (!empty($tagwriter->warnings)) {
57 echo 'There were some warnings:<br>'.implode('<br><br>', $tagwriter->warnings);
[all …]
H A Ddemo.write.php43 $tagwriter = new getid3_writetags; variable
44 $tagwriter->filename = $Filename;
45 $tagwriter->tagformats = $TagFormatsToWrite;
46 $tagwriter->overwrite_tags = false;
47 $tagwriter->tag_encoding = $TaggingFormat;
49 $tagwriter->remove_other_tags = true;
69 …if (in_array('id3v2.4', $tagwriter->tagformats) || in_array('id3v2.3', $tagwriter->tagformats) || …
94 $tagwriter->tag_data = $TagData;
95 if ($tagwriter->WriteTags()) {
97 if (!empty($tagwriter->warnings)) {
[all …]
H A Ddemo.mysqli.php328 $tagwriter = new getid3_writetags;
329 $tagwriter->filename = $filename;
330 $tagwriter->tagformats = $TagFormatsToWrite;
331 $tagwriter->overwrite_tags = true;
332 $tagwriter->tag_encoding = $getID3->encoding;
333 $tagwriter->tag_data = $SourceArray;
335 if ($tagwriter->WriteTags()) {
336 $errors = $tagwriter->errors;
339 $errors = $tagwriter->errors;