Datahopa

Computer Related => PC Software => Topic started by: Data on November 18, 2015, 13:30:03 PM

Title: MP3 tag editor
Post by: Data on November 18, 2015, 13:30:03 PM
I've been going through my old MP3's and adding the new tags and artwork to them, found this nice little free, stand alone program if anyone is interested. 

http://www.mp3tag.de/en/ (http://www.mp3tag.de/en/)
Title: Re: MP3 tag editor
Post by: Freddy on November 18, 2015, 13:33:27 PM
That's what I use for mine, it's nice and simple to use.
Title: Re: MP3 tag editor
Post by: DaveMorton on November 18, 2015, 14:47:49 PM
That's a feature that's built into Winamp, though the online lookup uses Gracenote. Winamp even has "batch mode", which allows you to look up and automatically set all of the ID3 data at once, which is handy if you just converted all of your albums to MP3 files (not to sell, but for personal use, of course! ;)).
Title: Re: MP3 tag editor
Post by: Data on November 18, 2015, 20:26:25 PM
Didn't know Winamp could do it, good tip  :)
Title: Re: MP3 tag editor
Post by: 8pla.net on November 19, 2015, 02:20:15 AM
Hey guys, check this out.   Now, this looks like great fun!


<?php
$data 
= array(
              
"title" => "Re:Start",
              
"artist" => "Re:\Legion",
              
"comment" => "A nice track"
             
);
$result id3_set_tag"path/to/example.mp3"$dataID3_V1_0 );
if (
$result === true) {
    echo 
"Tag successfully updated\n";
}
?>



There is much more information at php.net ...

Reference: http://php.net/manual/en/function.id3-set-tag.php (http://php.net/manual/en/function.id3-set-tag.php)
Title: Re: MP3 tag editor
Post by: Freddy on November 19, 2015, 22:08:30 PM
Amazing what PHP can do sometimes - I was using a library to convert WAV to MP3 - who'd expect PHP to do that.
Title: Re: MP3 tag editor
Post by: Carl2 on November 26, 2015, 23:00:42 PM
I just found another Bzip2 conveter which is used with Haptek, have to give it a try although the last one tried didn't work.  It would be nice if Freddy got a character that would work for Hal,  much work involved don't think it will happen though.
Carl2
Title: Re: MP3 tag editor
Post by: Freddy on November 28, 2015, 16:15:16 PM
Off topic but I will just answer Carl. No there's no chance the way things stand of me making an avatar system for UltraHal - I don't see anything developing over there - Rob's been saying he will do things for a few years now and nothing comes to light.
Title: Re: MP3 tag editor
Post by: 8pla.net on December 05, 2015, 14:58:31 PM
Well, let's include Carl's contribution to this topic,
by pointing out that bzip2 is yet another little known
function in PHP:

http://php.net/manual/en/ref.bzip2.php (http://php.net/manual/en/ref.bzip2.php)


If anyone knows more about this, please go on...
I would like to hear more about it.

Title: Re: MP3 tag editor
Post by: DaveMorton on December 05, 2015, 15:11:08 PM
[off-topic]
I've not had an opportunity to use bzip in PHP, but I've made use of PHP's ZipArchive (http://php.net/manual/en/class.ziparchive.php) class in several projects, and I find it quite useful. :)
[/off-topic]

Sorry, mates. Just following Freddy's example.
Title: Re: MP3 tag editor
Post by: 8pla.net on December 05, 2015, 16:05:46 PM
What I find thought provoking, looking at this on a preliminary basis... (So, correct me if I am wrong.)
bzip2 compresses on a single file basis, while ZipArchive compresses on a multiple file basis.  So, there must be an advantage to bzip2?  Better bandwidth, maybe?

Mentioned politely, I don't feel this discussion is off topic, or at least not way far off topic.  Afterall, MP3 is a form of compression which makes audio files much smaller.  So a discussion of compression relates to an editor which has to handle MP3 compression to access the tags.