Questions tagged [winamp]

Winamp is a media player for both Windows PCs and Android devices. It's noted for graphical, sound visualization, playlist, and media library features.

41 questions
7
votes
2 answers

How to detect which program is playing sound on windows 7?

I'm trying to write a little background program that stops music playing Winamp when another program plays sounds. The part about the accessing Winamp through Java is already solved now I need a way to detect which program plays the currently played…
OneWithAHat
  • 81
  • 1
  • 3
4
votes
2 answers

PubNub JSON serialization code works in example project but not in my project

I am making a Winamp plugin with the single function of sending the details of the song being played over HTTP to a webpage. It works like this: Winamp song event triggered -> check for new song -> publish to webpage using PubNub (C# API). So far I…
pilau
  • 6,635
  • 4
  • 56
  • 69
4
votes
1 answer

Most simple C++ PUSH notification / POST solution to use inside a DLL?

I am making a Winamp plugin with the single function of sending the details of the song being played over HTTP to a webpage/webserver. I couldn't find anything like this that actually works, so decided to dive in for the first time into C++ and just…
pilau
  • 6,635
  • 4
  • 56
  • 69
3
votes
1 answer

ShoutCast over SSL

So I've gone ahead and set up my ShoutCast server DNAS and set my DSP in Winamp on my host computer. The server listens on port 8000, so per some instructions I installed an output plugin for winamp (Shoutcast DSP) and used 8000 and the password to…
Honus Wagner
  • 2,830
  • 13
  • 44
  • 61
3
votes
4 answers

c# move Winamp main window

I am trying to move winamps main window, with this code: [DllImport("user32.dll")] static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint); [DllImport("user32.dll")] static extern bool…
Daniel Kurz
  • 816
  • 7
  • 21
2
votes
1 answer

Cannot run mysql after moving data (Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist)

I come here from this topic Where user has exactly the same problem. I have installed Winamp (Apache+Mysql). I moved my /data subfolders (backup) to mysql/data (installed folder). I originally had error that my port is in use, so I changed to 3307.…
John Boe
  • 3,501
  • 10
  • 37
  • 71
2
votes
0 answers

Loading a custom skin onpage/window load by default

I want to load a custom .wsz skin on page-load on my website. I still don't understand how to do it to make it work. Here a snippet with my code: https://codepen.io/cat999/pen/rNOOjJP here my js const webamp = new Webamp({ initialTracks: [{ …
2
votes
0 answers

Why does CreateWindowEx not work as expected?

I followed the tutorial at: http://www.winprog.org/tutorial/simple_window.html I have a reasonable understanding of what everything in the tutorial is doing and my test program works. I have tried to create a plugin for winamp using the hInstance of…
diolemo
  • 2,621
  • 2
  • 21
  • 28
2
votes
0 answers

Icecast - how to show currently playing song on a website

i found a lot of topics on this question, but i didnt get an answer. I'm streaming music to my website using icecast and winamp. Now i want to display the current song that is playing on the website. How can i do that? Thanks!
matje
  • 41
  • 4
2
votes
2 answers

How to create a visual studio plugin that controls winamp?

I often listen to music while I code. Switching songs while in the middle of something damages your productivity because you have to move to another window. How would you implement such a plug in and in what language would I be more comfortable with…
the_drow
  • 18,571
  • 25
  • 126
  • 193
2
votes
0 answers

c# get now playing info for video or audio program

I would like to know how to get the currently playing song/video from commons players. I know this is possible as a dll for mirc has done this for years (but its support is dead and doesn't work any more). I've tried searching for ways to do this…
pball
  • 33
  • 4
2
votes
1 answer

how to make an AHK script to drag and drop the current playing file from winamp into another program?

I'm trying to write a script that drops the current playing file from Winamp into Tabbles (a file tagging software http://tabbles.net ) I found this example but it didn't help…
Mike Rotchy
  • 21
  • 1
  • 2
1
vote
1 answer

how to create plugins for different audio software like itunes and winamp?

i am new to programming and want to develop a plugin that interacts with the itunes or winamp ar WMP and then does what it is programmed to do. I know php and mysql kind of stuff but i am totally new at programming for pc. my question is that how…
dannysood
  • 1,129
  • 3
  • 18
  • 36
1
vote
0 answers

Winamp Plugin - Can I detect a redirect in minibrowser?

I am developing a Winamp plugin that requires a user a to authenticate on a website that I display in the minibrowser. After the user authenticates I would then like control to be given back to my plugin. My question is: is there a way to detect…
Nick
  • 19,198
  • 51
  • 185
  • 312
1
vote
0 answers

perl MP3::Tag: Add/Update Rating to a file

i'm using the latest release of strawberry perl with the latest mp3::tag module. i would like update many mp3 files to add a rating attribute. i'm using winamp and winamp stores the rating attribute by default in the media library. but in winamp…
sb9x
  • 19
  • 2
1
2 3