One of the projects I am working on requires the reading of mp3 metadata. I see this is covered all over the place in different languages, but I donât see one for Pharo/Smalltalk. Does anyone know off hand of something like this? Would it be worthwhile to do something like this in Smalltalk, or would it be a better idea to find and executable somewhere, run it, and parse the data there? Thanks! ---- peace, sergio photographer, journalist, visionary Public Key: https://pgp.key-server.io/pks/lookup?op=get&search=0x69B08F58923AB3A2 #BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV @sergio_101@mastodon.social https://sergio101.com http://www.codeandmusic.com http://www.twitter.com/sergio_101 http://www.facebook.com/sergio101
Hello, To read mp3 metadata you should rely on an id3 parser (https://en.wikipedia.org/wiki/ID3). I use/develop this one: https://github.com/pharo-media-center/id3-pharo You can also use the libvlc binding (https://github.com/badetitou/Pharo-LibVLC). I know we can use it to get the metadata, most of the code is already written normally, but I did not achieve to make it works (I should spend some time on it soon). Benoît Le 24/01/2020 à 04:55, sergio ruiz a écrit :
One of the projects I am working on requires the reading of mp3 metadata. I see this is covered all over the place in different languages, but I donât see one for Pharo/Smalltalk. Does anyone know off hand of something like this?
Would it be worthwhile to do something like this in Smalltalk, or would it be a better idea to find and executable somewhere, run it, and parse the data there?
Thanks!
---- peace, sergio photographer, journalist, visionary
Public Key: https://pgp.key-server.io/pks/lookup?op=get&search=0x69B08F58923AB3A2 #BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV @sergio_101@mastodon.social <mailto:sergio_101@mastodon.social> https://sergio101.com http://www.codeandmusic.com http://www.twitter.com/sergio_101 http://www.facebook.com/sergio101
-- Benoît Verhaeghe badetitou.github.io benoit.verhaeghe@berger-levrault.com R&D Engineer at Berger-Levrault benoit.verhaeghe@inria.fr PHD student at Inria-Lille--Nord-Europe
THIS! is exactly what I need. Thank you so much!
On Jan 24, 2020, at 4:05 AM, VERHAEGHE Benoit <badetitou@gmail.com> wrote:
To read mp3 metadata you should rely on an id3 parser (https://en.wikipedia.org/wiki/ID3 <https://en.wikipedia.org/wiki/ID3>). I use/develop this one: https://github.com/pharo-media-center/id3-pharo <https://github.com/pharo-media-center/id3-pharo>
---- peace, sergio photographer, journalist, visionary Public Key: https://pgp.key-server.io/pks/lookup?op=get&search=0x69B08F58923AB3A2 #BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2dV @sergio_101@mastodon.social https://sergio101.com http://www.codeandmusic.com http://www.twitter.com/sergio_101 http://www.facebook.com/sergio101
participants (2)
-
sergio ruiz -
VERHAEGHE Benoit