Questions tagged [audio-player]

A software specialized in playing audio of different formats and/or manage audio libraries.

An audio player is a software specialized in playing audio files.

Some players play a specific file format, but many play a great range of file formats, ranging from MP3 files to WAV files. Many audio players have also the functionality to manage audio libraries, create playlists, shuffling music, and much more.

Questions on this topic should be about development of audio-players, errors on API's of common audio players and such.

1392 questions
-1
votes
1 answer

Java server, client, music player

Hi i'm developing a home control system in Java. I've figured out how to control light, AC and alarm, but now i want it to be able to play music on my home theater. The program is built up like this: I got a Java server that talks to an Arduino, and…
Murillio4
  • 485
  • 5
  • 17
-1
votes
2 answers

On/Off Music in Android

I have four buttons of my main menu for my android game. In my option, there's on and off. When the user clicks the on button, the music should play when I start to click play. And if the user clicks the off, the music will not play. But the default…
pingboo23
  • 137
  • 1
  • 3
  • 15
-1
votes
1 answer

Does Windows 7/8 have universal API to control music player working any music player?

I want to query status, pause/resume music players from my application. Is there a universal API for this in Windows 7/8, or I need to write custom code for each player like it was in the old times?
Sergey Kirillov
  • 182
  • 1
  • 3
-1
votes
1 answer

Alternative music player

Is there any player that does not require flash to play the sound? I have already tried html5 player but it is also not working. I am currently working on a small project in Raspberry Pie. Due to low hardware specification, it cannot load flash…
Alok Pant
  • 384
  • 1
  • 3
  • 15
-1
votes
1 answer

How to make a radio app keep playing in the background of my Android App

Am still new to android, but i followed a tutorial online in developing a radio Application, now this is the problem am encountering, i want this radio to keep playing, so that the app user can keep using the app or other application while the radio…
user1662302
-1
votes
1 answer

how to write a music player in linux using ffmpeg

i have a course project in making a music player in linux with ffmpeg, can anyone give me some instruction about it. Does anyone know of any good resources for learning how to use ffmpeg? Considering I just want to write a simple music player with…
-2
votes
1 answer

Discord.py rewrite bot not joining voice channel

So i tried most of the stackoverflow post's solutions and none of them worked. async def join(ctx): destination = ctx.author.voice.channel if ctx.voice_state.voice: await ctx.voice_state.voice.move_to(destination) return …
aadrian
  • 45
  • 4
-2
votes
2 answers

How to add a 5 sec Rewind and Fast Forward buttons to HTML5 audio player?

On a WordPress website I want to add Rewind and Forward buttons to Audio Player to let forward and backward by 5 or 10 seconds. I've searched a lot and not found any information about it. Is it possible to do it? I'd appreciate any clue or…
Kardo
  • 1,658
  • 4
  • 32
  • 52
-2
votes
2 answers

Carplay Resume Music

I am creating a CarPlay music app, everything works fine except when I get a call in between my music is playing. Carplay pauses music in between but when I end phone call its not resuming back. Please help if anyone has faced same issue
-2
votes
1 answer

Traceback (most recent call last): File "main.py", line 135, in run_bot(auth['bot_token'], vk_session) help error code python download music

code error Traceback (most recent call last): File "main.py", line 135, in run_bot(auth['bot_token'], vk_session) File "main.py", line 112, in run_bot bot.polling() File…
-2
votes
2 answers

How Play to audio list in os.startfile use Python?

How Play to audio list in os.startfile use Python? MY CODE: import os music_dir = "C:\\Users\\JACKSON KASI\\Music" songs = os.listdir(music_dir) print(songs) for i in songs: os.startfile(os.path.join(music_dir,i)) The next audio file should…
-2
votes
1 answer

What is ValueError: too many values to unpack (expected 2)?

Im trying to convert midi files to csv, make changes, and then change back into midi. I wan to do this all in python using the py_midicsv module. However, I run into an error when i try to follow the documentation on:…
Joshua S
  • 1
  • 1
  • 2
-2
votes
1 answer

How play music as Document directory in swift?

I can't read the file in the document Get file in the document and show on the table view if file as mp3 music did select on row play music func loadMusic() { let documentsPath = NSSearchPathForDirectoriesInDomains(.documentDirectory,…
-2
votes
1 answer

How to add auto play next song option in my Android app?

I want to add an automatically play next song option when previous is finished in my Android app. I have trying many ways but failed. Please, give full code, not hints. Here are the Full Class: public class AlbumPlayActivity extends…
it's JU
  • 31
  • 1
  • 2
  • 6
-2
votes
1 answer

Trying to get songlist in a fragment gives nullpointerexception

I want to retrieve the list of songs in a fragment that I'm using for tabbed UI. public void getSongList(){ ContentResolver musicResolver = getActivity().getContentResolver(); Uri musicUri =…