Csound Csound-dev Csound-tekno Search About

[Csnd] filelen for mp3 files

Date2011-01-19 23:15
FromOeyvind Brandtsegg
Subject[Csnd] filelen for mp3 files
Hello

Should filelen return the correct length for an mp3 file?
Here, it returns 12 seconds for a file that has a length of 1 minutes
35 seconds.

It should be noted that I commented out all gen49 code in ftgens.c, as
I had problems compiling it.
But mp3in works fine, it seems.

What I'm trying to do with filelen is modify p3 to match the length of the file.
It's not feasible to do it manually as I'm trying to analyze many
(hundreds) mp3 files

all best
Oeyvind


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-20 00:12
FromErik de Castro Lopo
SubjectRe: [Csnd] filelen for mp3 files
Oeyvind Brandtsegg wrote:

> Should filelen return the correct length for an mp3 file?
> Here, it returns 12 seconds for a file that has a length of 1 minutes
> 35 seconds.

If I remember correctly, for MP3 files encoded with a variable
bitrate, there is no way to tell the length of a file without
decoding the whole file.

Erik

Date2011-01-20 08:25
FromOeyvind Brandtsegg
SubjectRe: [Csnd] filelen for mp3 files
That seems reasonable,
but when mp3in plays the file, it reports the correct duration (when
it starts playing).
Does mp3in actually decode the whole file at init ?
Oeyvind

2011/1/20 Erik de Castro Lopo :
> Oeyvind Brandtsegg wrote:
>
>> Should filelen return the correct length for an mp3 file?
>> Here, it returns 12 seconds for a file that has a length of 1 minutes
>> 35 seconds.
>
> If I remember correctly, for MP3 files encoded with a variable
> bitrate, there is no way to tell the length of a file without
> decoding the whole file.
>
> Erik
> --
> ----------------------------------------------------------------------
> Erik de Castro Lopo
> http://www.mega-nerd.com/
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-01-20 09:18
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] filelen for mp3 files
Actually in an MP3 file there is information as to audio length.  The
mpadec library reads it and displays when the file is open.  I guess an
mp3len opcode is possible.

More orried about wy the GEN in fgens.c fails to compile
==John ff

> Oeyvind Brandtsegg wrote:
>
>> Should filelen return the correct length for an mp3 file?
>> Here, it returns 12 seconds for a file that has a length of 1 minutes
>> 35 seconds.
>
> If I remember correctly, for MP3 files encoded with a variable
> bitrate, there is no way to tell the length of a file without
> decoding the whole file.
>
> Erik
> --
> ----------------------------------------------------------------------
> Erik de Castro Lopo
> http://www.mega-nerd.com/
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
>
>
>




Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-20 09:49
FromOeyvind Brandtsegg
SubjectRe: [Csnd] filelen for mp3 files
Ah, good. an mp3len opcode would be good.
Maybe it would be even better if it could be incorporated into filelen
somehow (?)

When compiling (with a clean fgens.c), I get a few of these
Engine\fgens.o(.text+0x673a): In function `gen49':
C:/msys/1.0/source/csound5/Engine/fgens.c:2716: undefined reference to
`mp3dec_init'

My custom.py has:
    customLIBPATH.append('c:/msys/1.0/source/mpadec/mpadec/mpadec/libmpadec')
    customCPPPATH.append('C:/msys/1.0/source/mpadec/mpadec/mpadec/include')
I was not totally sure about those, is that correct?

For more details, I've pasted the full console print below.

all best
Oeyvind

**
$ c:/python26/scripts/scons useDouble=1 useFLTK=0 bufferoverflou=1
buildInterfaces=1 buildPythonWrap
per=0 gcc3opt='pentium4' includeMP3=1
scons: Reading SConscript files ...

      C S O U N D 5

SCons build file for Csound 5:
API library, plugin opcodes, utilities, and front ends.

By Michael Gogins 

For custom options, run 'scons -h'.
For default options, run 'scons -H'.
If headers or libraries are not found, edit 'custom.py'.
For Linux, run in the standard shell
    with standard Python and just run 'scons'.
For MinGW, run in the MSys shell
    and use www.python.org WIN32 Python to run scons.
For Microsoft Visual C++, run in the Platform SDK
    command shell, and use www.python.org WIN32 Python to run scons.

System platform is 'win32'.

scons: warning: The Options class is deprecated; use the Variables
class instead.
File "C:\msys\1.0\source\csound5\SConstruct", line 74, in 
Using options from 'custom.py.'
Build platform is MinGW/MSYS
SCons tools on this platform:  ['mingw', 'gcc', 'g++', 'gnulink',
'ar', 'gas', 'm4', 'swig', 'javac', 'jar']
CONFIGURATION DECISION: No localisation
CONFIGURATION DECISION: Using double-precision floating point for audio samples.
Checking for C header file stdio.h... yes
Checking for C library sndfile... yes
Checking for C library pthread... yes
CONFIGURATION DECISION: Building with MP3 support
CONFIGURATION DECISION: No Wiimote support
CONFIGURATION DECISION: No P5 Glove support
Checking for pthread_barrier_init(0, 0, 0) in C library pthread... yes
Checking for __sync_lock_test_and_set((int32_t *)0, 0) in C library m... no
Checking for C++ header file
frontends/CsoundVST/vstsdk2.4/public.sdk/source/vst2.x/audioeffectx.h...
yes
Checking for C header file portaudio.h... yes
Checking for C header file portmidi.h... yes
Checking for C++ header file FL/Fl.H... no
Checking for C++ header file boost/any.hpp... yes
Checking for C++ header file gmm/gmm.h... no
Checking for C library asound... no
Checking for C library lo... no
Checking for MusicXML2::SXMLFile f = MusicXML2::TXMLFile::create() in
C++ library musicxml2... no
Checking for C header file jack/jack.h... no
Checking for C header file pulse/simple.h... no
Checking for C++ header file Opcodes/stk/include/Stk.h... no
Checking for C header file m_pd.h... no
Checking for C header file tcl.h... yes
Checking for C header file zlib.h... no
Checking for C++ header file funknown.h... no
Checking for C header file lua.h... no
Checking for SWIG... yes
Python Version: 2.6
Checking for C header file Python.h... yes
Checking for C++ header file jni.h... no
Checking for C header file io.h... yes
Checking for C header file fcntl.h... yes
Checking for C header file unistd.h... yes
Checking for C header file stdint.h... yes
Checking for C header file sys/time.h... yes
Checking for C header file sys/types.h... yes
Checking for C header file termios.h... no
Checking for C header file values.h... yes
Checking for C header file winsock.h... yes
Checking for C header file dirent.h... yes
Checking for libsndfile version 1.0.16 or later... yes
CONFIGURATION DECISION: Not building with new parser
CONFIGURATION DECISION: Building dynamic Csound library
CONFIGURATION DECISION: Building Csound C++ interface library.
CONFIGURATION DECISION: Not building Lua wrapper to Csound C++
interface library.
CONFIGURATION DECISION: Not building Java wrapper to Csound C++
interface library.
CONFIGURATION DECISION: Not building Python wrapper to Csound C++
interface library.
CONFIGURATION DECISION: Not generating Csound API PDF documentation.
Checking for C library png... no
CONFIGURATION DECISION: Not building image opcodes
CONFIGURATION DECISION: Not building linear algebra opcodes.
CONFIGURATION DECISION: Not building with FLTK graphs and widgets.
CONFIGURATION DECISION: Not building CoreAudio plugin.
CONFIGURATION DECISION: Not building ALSA plugin.
CONFIGURATION DECISION: Building PortAudio module.
CONFIGURATION DECISION: Not building JACK plugin.
CONFIGURATION DECISION: Building with PortMIDI.
CONFIGURATION DECISION: Not building OSC plugin.
CONFIGURATION DECISION: Not building UDP plugins.
Checking for C header file fluidsynth.h... no
CONFIGURATION DECISION: Not building fluid opcodes.
CONFIGURATION DECISION: Not building vst4cs opcodes.
CONFIGURATION DECISION: Not building DSSI plugin host opcodes.
Checking for C header file Opcodes/Loris/src/loris.h... no
CONFIGURATION DECISION: Not building Loris Python extension and Csound opcodes.
CONFIGURATION DECISION: Not building STK opcodes.
CONFIGURATION DECISION: Not building Python opcodes.
CONFIGURATION DECISION: Not building FLTK CSOUND5GUI frontend.
CONFIGURATION DECISION: Not building Csound Text Editor.
CONFIGURATION DECISION: Not building CsoundAC extension module for
Csound with algorithmic composition.
CONFIGURATION DECISION: Not building CsoundVST plugin and standalone.
CONFIGURATION DECISION: Not building Tclcsound
CONFIGURATION DECISION: Not building Winsound
CONFIGURATION DECISION: Not building OSX GUI frontend
CONFIGURATION DEFAULT:  Building csLadspa.
CONFIGURATION DECISION: Not calling TAGS
scons: done reading SConscript files.
scons: Building targets ...
gcc -shared -mwindows -mno-cygwin -Wl,--enable-auto-import
-Wl,--enable-runtime-pseudo-reloc -module -o csound64.dll.5.2
Engine\auxfd.o Engine\cfgvar.o Engine\entry1.o Engine\envvar.o
Engine\express.o Engine\extract.o Engine\fgens.o Engine\insert.o
Engine\linevent.o Engine\memalloc.o Engine\memfiles.o Engine\musmon.o
Engine\namedins.o Engine\otran.o Engine\rdorch.o Engine\rdscor.o
Engine\scsort.o Engine\scxtract.o Engine\sort.o Engine\sread.o
Engine\swrite.o Engine\twarp.o InOut\libsnd.o InOut\libsnd_u.o
InOut\midifile.o InOut\midirecv.o InOut\midisend.o InOut\winascii.o
InOut\windin.o InOut\window.o InOut\winEPS.o OOps\aops.o OOps\bus.o
OOps\cmath.o OOps\diskin.o OOps\diskin2.o OOps\disprep.o OOps\dumpf.o
OOps\fftlib.o OOps\goto_ops.o OOps\midiinterop.o OOps\midiops.o
OOps\midiout.o OOps\mxfft.o OOps\oscils.o OOps\pstream.o
OOps\pvfileio.o OOps\pvsanal.o OOps\random.o OOps\remote.o
OOps\schedule.o OOps\sndinfUG.o OOps\str_ops.o OOps\ugens1.o
OOps\ugens2.o OOps\ugens3.o OOps\ugens4.o OOps\ugens5.o OOps\ugens6.o
OOps\ugrw1.o OOps\ugrw2.o OOps\vdelay.o Top\argdecode.o
Top\cscore_internal.o Top\cscorfns.o Top\csmodule.o Top\csound.o
Top\getstring.o Top\main.o Top\new_opts.o Top\one_file.o Top\opcode.o
Top\threads.o Top\utility.o -L. -L. -LC:\usr\local\lib -L. -L.
-LC:\msys\1.0\mingw\lib -LC:\msys\1.0\local\lib -LC:\msys\1.0\lib
"-LC:\Program Files\Microsoft Platform SDK for Windows Server 2003
R2\Lib" "-LC:\Programfiler\_Microsoft Platform SDK for Windows Server
2003 R2\Lib" -LC:\msys\1.0\source\portaudio\build\msvc\Win32\Release
-LC:\msys\1.0\source\portmidi_victor
-LC:\msys\1.0\source\fltk-1.1.10rc3\lib
-LC:\msys\1.0\source\mpadec\mpadec\mpadec\libmpadec -LC:\Python26\Libs
-lsndfile -lpthread -lpthread -lsndfile -ladvapi32 -lcomctl32
-lcomdlg32 -lglu32 -lkernel32 -lmsvcrt -lodbc32 -lodbccp32 -lole32
-loleaut32 -lshell32 -luser32 -luuid -lwinmm -lwinspool -lws2_32
-lwsock32 -ladvapi32 -lcomctl32 -lcomdlg32 -lglu32 -lkernel32 -lodbc32
-lodbccp32 -lole32 -loleaut32 -lshell32 -luser32 -luuid -lwinmm
-lwinspool -lws2_32 -lwsock32 -lpthread -Wl,--out-implib,libcsound64.a
-Wl,--output-def,csound64.def
Creating library file: libcsound64.a
Engine\fgens.o(.text+0x673a): In function `gen49':
C:/msys/1.0/source/csound5/Engine/fgens.c:2716: undefined reference to
`mp3dec_init'
Engine\fgens.o(.text+0x6757):C:/msys/1.0/source/csound5/Engine/fgens.c:2720:
undefined reference to `mp3dec_configure'
Engine\fgens.o(.text+0x67a6):C:/msys/1.0/source/csound5/Engine/fgens.c:2729:
undefined reference to `mp3dec_init_file'
Engine\fgens.o(.text+0x67cb):C:/msys/1.0/source/csound5/Engine/fgens.c:2733:
undefined reference to `mp3dec_get_info'
Engine\fgens.o(.text+0x6921):C:/msys/1.0/source/csound5/Engine/fgens.c:2761:
undefined reference to `mp3dec_decode'
Engine\fgens.o(.text+0x694b):C:/msys/1.0/source/csound5/Engine/fgens.c:2778:
undefined reference to `mp3dec_decode'
Engine\fgens.o(.text+0x69d2):C:/msys/1.0/source/csound5/Engine/fgens.c:2735:
undefined reference to `mp3dec_uninit'
Engine\fgens.o(.text+0x69da):C:/msys/1.0/source/csound5/Engine/fgens.c:2736:
undefined reference to `mp3dec_error'
Engine\fgens.o(.text+0x6b14):C:/msys/1.0/source/csound5/Engine/fgens.c:2781:
undefined reference to `mp3dec_uninit'
Engine\fgens.o(.text+0x6b3c):C:/msys/1.0/source/csound5/Engine/fgens.c:2772:
undefined reference to `mp3dec_uninit'
Engine\fgens.o(.text+0x6b4d):C:/msys/1.0/source/csound5/Engine/fgens.c:2726:
undefined reference to `mp3dec_uninit'
collect2: ld returned 1 exit status
scons: *** [csound64.dll.5.2] Error 1
scons: building terminated because of errors.


2011/1/20  :
> Actually in an MP3 file there is information as to audio length.  The
> mpadec library reads it and displays when the file is open.  I guess an
> mp3len opcode is possible.
>
> More orried about wy the GEN in fgens.c fails to compile
> ==John ff
>
>> Oeyvind Brandtsegg wrote:
>>
>>> Should filelen return the correct length for an mp3 file?
>>> Here, it returns 12 seconds for a file that has a length of 1 minutes
>>> 35 seconds.
>>
>> If I remember correctly, for MP3 files encoded with a variable
>> bitrate, there is no way to tell the length of a file without
>> decoding the whole file.
>>
>> Erik
>> --
>> ----------------------------------------------------------------------
>> Erik de Castro Lopo
>> http://www.mega-nerd.com/
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>>
>>
>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-01-20 19:17
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] filelen for mp3 files
> Ah, good. an mp3len opcode would be good.

I have it written and it seems to work

ir  mp3len "beats.mp3"


> Maybe it would be even better if it could be incorporated into filelen
> somehow (?)
>

I would prefer not; would like to keep MP3 stuff easy to remove if the
patent people stat being agressive

==John ff



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-21 09:20
FromOeyvind Brandtsegg
SubjectRe: [Csnd] filelen for mp3 files
Great.
Is it in CVS yet? I tried building now and I get a "no legal opcode"
when trying to use it.
(still building without gen49 in fgens.c)
Oeyvind

2011/1/20  :
>> Ah, good. an mp3len opcode would be good.
>
> I have it written and it seems to work
>
> ir  mp3len "beats.mp3"
>
>
>> Maybe it would be even better if it could be incorporated into filelen
>> somehow (?)
>>
>
> I would prefer not; would like to keep MP3 stuff easy to remove if the
> patent people stat being agressive
>
> ==John ff
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-01-21 09:28
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] filelen for mp3 files
Thought i had committed.  In Opcodes/mp3in.c


> Great.
> Is it in CVS yet? I tried building now and I get a "no legal opcode"
> when trying to use it.
> (still building without gen49 in fgens.c)
> Oeyvind
>
> 2011/1/20  :
>>> Ah, good. an mp3len opcode would be good.
>>
>> I have it written and it seems to work
>>
>> ir  mp3len "beats.mp3"
>>
>>
>>> Maybe it would be even better if it could be incorporated into filelen
>>> somehow (?)
>>>
>>
>> I would prefer not; would like to keep MP3 stuff easy to remove if the
>> patent people stat being agressive
>>
>> ==John ff
>>
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
>
>
>




Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-21 09:34
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] filelen for mp3 files
Sorry -- I had not committed it -- there now
I remember I delayed until after bmore testing, and then got distracted
with the ICMC paper

> Great.
> Is it in CVS yet? I tried building now and I get a "no legal opcode"
> when trying to use it.
> (still building without gen49 in fgens.c)
> Oeyvind
>
> 2011/1/20  :
>>> Ah, good. an mp3len opcode would be good.
>>
>> I have it written and it seems to work
>>
>> ir  mp3len "beats.mp3"




Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-21 09:55
FromOeyvind Brandtsegg
SubjectRe: [Csnd] filelen for mp3 files
Sorry, no luck,
mp3in.c has a date 23.Aug.2010.

Does it take some time before the repo is actually updated after you
have committed?
(that would seem strange wouldn't it?)

Oeyvind

2011/1/21  :
> Sorry -- I had not committed it -- there now
> I remember I delayed until after bmore testing, and then got distracted
> with the ICMC paper
>
>> Great.
>> Is it in CVS yet? I tried building now and I get a "no legal opcode"
>> when trying to use it.
>> (still building without gen49 in fgens.c)
>> Oeyvind
>>
>> 2011/1/20  :
>>>> Ah, good. an mp3len opcode would be good.
>>>
>>> I have it written and it seems to work
>>>
>>> ir  mp3len "beats.mp3"
>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-01-21 10:04
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] filelen for mp3 files
**** Access allowed: Personal Karma exceeds Environmental Karma.
**** Access allowed: Personal Karma exceeds Environmental Karma.
Checking in ChangeLog;
/cvsroot/csound/csound5/ChangeLog,v  <--  ChangeLog
new revision: 1.832; previous revision: 1.831
done
Checking in Opcodes/mp3in.c;
/cvsroot/csound/csound5/Opcodes/mp3in.c,v  <--  mp3in.c
new revision: 1.13; previous revision: 1.12
done


So I assume it takes a short while to appear
> Sorry, no luck,
> mp3in.c has a date 23.Aug.2010.
>
> Does it take some time before the repo is actually updated after you
> have committed?
> (that would seem strange wouldn't it?)
>



Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2011-01-21 10:19
FromAndres Cabrera
SubjectRe: [Csnd] filelen for mp3 files
I think it does take a little time for the developer cvs to sync with
the anonymous cvs.

Cheers,
Andres

On Fri, Jan 21, 2011 at 10:04 AM,   wrote:
> **** Access allowed: Personal Karma exceeds Environmental Karma.
> **** Access allowed: Personal Karma exceeds Environmental Karma.
> Checking in ChangeLog;
> /cvsroot/csound/csound5/ChangeLog,v  <--  ChangeLog
> new revision: 1.832; previous revision: 1.831
> done
> Checking in Opcodes/mp3in.c;
> /cvsroot/csound/csound5/Opcodes/mp3in.c,v  <--  mp3in.c
> new revision: 1.13; previous revision: 1.12
> done
>
>
> So I assume it takes a short while to appear
>> Sorry, no luck,
>> mp3in.c has a date 23.Aug.2010.
>>
>> Does it take some time before the repo is actually updated after you
>> have committed?
>> (that would seem strange wouldn't it?)
>>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"


Date2011-01-21 10:30
FromOeyvind Brandtsegg
SubjectRe: [Csnd] filelen for mp3 files
Super, I got it now.
Thanks a lot.
Oeyvind

2011/1/21  :
> **** Access allowed: Personal Karma exceeds Environmental Karma.
> **** Access allowed: Personal Karma exceeds Environmental Karma.
> Checking in ChangeLog;
> /cvsroot/csound/csound5/ChangeLog,v  <--  ChangeLog
> new revision: 1.832; previous revision: 1.831
> done
> Checking in Opcodes/mp3in.c;
> /cvsroot/csound/csound5/Opcodes/mp3in.c,v  <--  mp3in.c
> new revision: 1.13; previous revision: 1.12
> done
>
>
> So I assume it takes a short while to appear
>> Sorry, no luck,
>> mp3in.c has a date 23.Aug.2010.
>>
>> Does it take some time before the repo is actually updated after you
>> have committed?
>> (that would seem strange wouldn't it?)
>>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"