Changeset 7116
- Timestamp:
- 01/28/10 01:01:43 (7 months ago)
- Location:
- trunk/liquidsoap/src
- Files:
-
- 1 modified
- 2 moved
-
Makefile (modified) (2 diffs)
-
decoder/taglib_plug.ml (moved) (moved from trunk/liquidsoap/src/formats/taglib_plug.ml) (1 diff)
-
decoder/vorbisduration.ml (moved) (moved from trunk/liquidsoap/src/formats/vorbisduration.ml)
Legend:
- Unmodified
- Added
- Removed
-
trunk/liquidsoap/src/Makefile
r7114 r7116 34 34 # TODO move all formats to encoders 35 35 formats = \ 36 $(if $(W_VORBIS),formats/vorbisduration.ml) \37 $(if $(W_TAGLIB),formats/taglib_plug.ml) \38 36 formats/externalformat.ml \ 39 37 formats/midiformat.ml \ … … 43 41 formats/wavformat.ml \ 44 42 $(if $(W_OGG),decoder/ogg_decoder.ml) \ 45 $(if $(W_MP3),decoder/mp3.ml) 43 $(if $(W_MP3),decoder/mp3.ml) \ 44 $(if $(W_VORBIS),decoder/vorbisduration.ml) \ 45 $(if $(W_TAGLIB),decoder/taglib_plug.ml) 46 46 47 47 playlists = \ -
trunk/liquidsoap/src/decoder/taglib_plug.ml
r6664 r7116 23 23 open Taglib 24 24 25 let get_tags ~format fname = 26 if format <> "MP3" then [] else 25 let get_tags fname = 27 26 try 28 27 let f = open_file ~file_type:Mpeg fname in
