similar to: [Flac-users] winamp plugins troubles

Displaying 20 results from an estimated 1000 matches similar to: "[Flac-users] winamp plugins troubles"

2004 Sep 10
1
Winamp3 Player Plugin error
The Winamp3 hit the streets yesterday, so i gave the FLAC Winamp3 plugin a shot (dragged cnv_flacpcm.wac to the Wacs/ directory, yadda yadda) and received the following error message when starting Winamp3: --- Studio.exe - Entry point Not Found The procedure entry point_chkesp could not be located in the dynamic link library MSVCRTD.dll. -- It's unable to play .flac files, but still plays
2004 Aug 06
2
WinAMP POS: mime types
At 01:25 PM 6/3/2003 -0600, you wrote: >The problem with WinAMP 3 is that it will accept only ogg >data with the old MIME type "application/x-ogg", but current >icecast sources emit the new and correct mime type >"application-ogg". WinAMP must reject the ogg data because >it didn't match the MIME type it expected, so yes, it just >sits there prebuffering,
2004 Aug 06
1
WinAMP POS: mime types
hmmm...didn't everyone know this ? http://forums.winamp.com/showthread.php?threadid=129224 oddsock At 02:35 PM 6/3/2003 -0500, you wrote: >Huh? Nullsoft is ditching Winamp 3? Care to elaborate? > >It did seem kinda flimsy :) > >hhhmmm.... > >ml > > > > > > > Winamp3's problems do not end with this simple mod, it has fundamental and > >
2004 Aug 06
3
<icylogin> ???
i saw that mail from a mailing list. http://article.gmane.org/gmane.comp.audio.icecast.general/748 I have the same problem as that guy . everything seems OK but ODDCast2 cannot connect to Icecast2 via Winamp3 . but where do you put the <icylogin> </icylogin>. I guess i have to turn it to 0 cause i use icecast2 . <p><p><p>--- >8 ---- List archives:
2004 Sep 10
1
[Flac-users] error: FLAC required!
Hi everybody! I'm in trouble again, could you help me? This time I can't get deal with "flac-tools" and other programs that use libFLAC. They just refuse compiling and complain for some functions indefinition. I have flac-1.0.4 already installed with ordinary: ./configure && make && make install. Read down for the details please. Configuring flac-tools:
2004 Aug 06
7
icecast2, ogg, mp3, etc
Hi, Just wanted to clarify, can icecast2 not read OR broadcast any mp3, or can it just not broadcast mp3 (but still play from a playlist)? I know the quality would be dropped if it had to reencode them though. And what's up with that POS Winamp3, it doesn't even play gg streams?!? I use xmms, but we have winamp3 on a demo computer, it just sits and keeps prebuffering. I need something
2004 Sep 10
2
Plugin Status
Hello, I have been using flac for some time and it works really great for me. I have tried the plugins for winamp2 and xmms and noticed that it does display the vorbis tags but you cannot edit them yet. It would also be cool to show some infos like md5sum, numbers of frames etc. in the plugin status window. Are these features under development or not very high priority?
2004 Aug 06
2
OT: compiling oddcast DSP
Hi, There's a rather serious problem with the Oddcast DSP for Winamp, when you stream in vorbis format over icecast2, it drops ~ 1/2 sec of near the beginning of every song except the first. I tracked this down, it turns out oddcast drops the last vorbis page of every stream. (The DSP doesn't receive the new metadata until after the song has been playing for a second or two, which is
2004 Sep 10
1
Winamp 3 plugin and flac 1.0.3
When I copy the winamp 3 plugin into the appropriate winamp folder, and start winamp, Winamp complains that it cannot find MSVCRTD.DLL Was the plugin mistakenly compiled as Debug and shipped that way? Any way for me to get the winamp3 plugin that isn't debug? I do not have MSVC++ to recompile it. -Justin
2006 May 04
5
web service authentication
after almost a week of trial and error, i''ve finally got a hold of creating a web service in rails. after all this time though, i''m still not quite sure if i can make it work the way i want it to. i was basically trying to create a login portal so that the users at our company can have one place to login for all of our internal applications. well, right now - i can have each
2012 Jan 25
3
Executing Script after MixMonitor is called
Hello Guys, I am trying to convert files that are .wac to mp3 after mixmonitor command is called but it doesnt execute the command, I tried the command in terminal it worked, any help please ... below is my dial plan exten=6500,n,Set(MIXMONITOR_EXEC=&& nice -n 19 /usr/local/bin/lame -b 8 -t -F -m m --bitwidth 8 --quiet "/var/spool/asterisk/monitor/${CALLFILENAME}.wav"
2004 Aug 06
1
WinXP , Icecast2 OddCast
Re-Hi , I'm also trying to write a tutorial to teach to use Icecast2 with AddCast + Winamp3 as source . Unfortunately it doesnot worrk very vell: When i dont play any file with WinAmp , and a connect WA+OddCast to icecast , it works, but as soon as i play a file it breaks the connection with thte message : connection reset by the server . So .... What is the way to make it work ? is there
2016 Jan 30
2
[PATCH] remove plugin_common library from MSVC
Previously src/plugin_common library was used by flac own Winamp plugin (MSVC/Windows) and by XMMS plugin (*nix). The Winamp plugin is long gone from flac tree, so plugin_common is unused on Windows. This patch removes it from MSVC project files. -------------- next part -------------- A non-text attachment was scrubbed... Name: remove_plugin_common_from_msvc.patch Type: application/octet-stream
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik, I've found a middleground for the problem of setting default CFLAGS. I've gone back to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script (i.e., the user hasn't specified anything) and then proceed to set them to the defaults as before. This has been suggested before: https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html In
2017 Jan 13
9
Upstreaming Gentoo patches
Dear FLAC devs, I would like to get some of our patches merged into master. Most of them deal with adhering to GNU conventions, respectively not overriding flags/variables that are up to the user to set. For instance, honoring $(htmldir) is important, as we have installation paths for the documentation that differ from what is currently coded in the various Makefile.am's. Regards David
2006 Jul 23
1
[PATCH] Fix a compile bug with gcc 2.95 in src/plugin_common/replaygain.c
Declaring variables in the middle of a block isn't supported by older (pre-C99?) compilers, and gcc 2.95 is one of them. --- a/src/plugin_common/replaygain.c +++ b/src/plugin_common/replaygain.c @@ -28,10 +28,11 @@ void FLAC_plugin__replaygain_get_from_fi double *track_peak, FLAC__bool *track_peak_set,
2004 Aug 06
1
Wont Stream
Hello, I have just setup an Icecast server on a FreeBSD box. Everything was setup fine, and the server runs fine. It will accept shoutcast connections and stream them fine - so there is no problem with that. The problem is streaming Icecast. I am using the OGGDSP plugin for Winamp 3 and when I connect it - it will look as though everything is connected but there is no lights flashing on my
2004 Sep 10
0
[Flac-users] Re: detecting encoding parameters?
Darn, I've deleted Josh's response, so I'll work from memory: Other than displaying block size with metaflac, I'm stumped at how to find out the -l and -r values and the -m / -M choices, so how does one determine them? And to avoid the overhead of a separate post, where does one get the cnv_flacpcm.wac support file for Winamp 3? It's not in the .zip file, it's not in
2004 Sep 10
3
id3v2 problem
Hi Josh, I found id3v2 didn't work on v1.1.0. I checked source codes, macros- (in such cases as FLAC_HAVE_ID3LIB) ware moved to config.h. That is good. But the place to do include is the after of #ifdef FLAC_HAVE_ID3LIB. The result of configure script isn't reflected. And it doesn't always have id3lib with this. Move place of 'include "config.h"' to the top. I
2004 Sep 10
1
plugin optimizations
Here is all-in-one patch, if this is a problem, i will try to make separated patches. Changes: plugin_common/ * FLAC__plugin_common__pack_pcm_signed_little_endian * accept FLAC__int32 *input[] * supports more channels * fixed clipping bug (BTW, random number generator in dither.c is low quality, it should be replaced, generator in replaygain is much better) *