![]() |
2007-03-29
, 11:11
|
Posts: 1,038 |
Thanked: 737 times |
Joined on Nov 2005
@ Helsinki
|
#32
|
![]() |
2007-03-29
, 11:47
|
Posts: 106 |
Thanked: 3 times |
Joined on Dec 2005
|
#33
|
and yah, UK MP uses gstreamer for playback, so I assume / hope there would be no need to do anything else than pass the file to gstreamer.
![]() |
2007-03-29
, 12:07
|
Posts: 1,038 |
Thanked: 737 times |
Joined on Nov 2005
@ Helsinki
|
#34
|
![]() |
2007-03-29
, 12:16
|
Posts: 106 |
Thanked: 3 times |
Joined on Dec 2005
|
#35
|
I had a look at the taglib and if it's the only way to read ogg stuff, I may rely on that. Of course, provided that it is fast enough.
I already use two id3 libs, so I could always use a third as well.
I'm curious why there is no purely python based lib for reading the comments.
![]() |
2007-03-29
, 13:02
|
Posts: 1,038 |
Thanked: 737 times |
Joined on Nov 2005
@ Helsinki
|
#36
|
![]() |
2007-03-29
, 22:32
|
Posts: 106 |
Thanked: 3 times |
Joined on Dec 2005
|
#37
|
I use http://id3-py.sourceforge.net/
ID V1 tags
and
http://nedbatchelder.com/code/modules/id3reader.html
for the rest.
I've also found some ogg libs in pure python. Might be easier to use than a separate component. I'll try them first ...
Pure python always translates nicely to absolute portability between platforms. As, e.g. I currently develop purely on osx and test it by running it in a window. (music playing is then done through pygame -(which, by the way, also supports ogg).
![]() |
2007-03-31
, 11:04
|
Posts: 1,038 |
Thanked: 737 times |
Joined on Nov 2005
@ Helsinki
|
#38
|
![]() |
2007-03-31
, 14:12
|
Posts: 1,038 |
Thanked: 737 times |
Joined on Nov 2005
@ Helsinki
|
#39
|
![]() |
2007-03-31
, 14:32
|
Posts: 209 |
Thanked: 8 times |
Joined on Nov 2005
@ Fishers, Indiana
|
#40
|
Thanks for the tip.