Tagged Questions
7
votes
4answers
3k views
Playing small sounds in Java game
For the computer game I'm making, I obviously want to play sound. So far, I've been using AudioClip to play WAV files. While this approach works fine, the WAV files tend to be gigantic. A few seconds ...
5
votes
1answer
2k views
streaming audio with html5 `<audio>` tag
I am trying to stream audio on a site hosted by Dreamhost from a lecture series using the <audio> tag in html5, but without much success. The actual code is
<audio id="playerTwo" ...
4
votes
2answers
235 views
LWJGL and Ogg/Mp3
I want to ask for resources on how to load ogg/mp3 files and play them using the OpenAL facilities in LWJGL. The problem is
I want/need a pure java solution
Would nice if necessary libs are in a ...
3
votes
5answers
4k views
Using Ogg Vorbis in Flash/Flex applications
I am looking to use ogg vorbis, instead of mp3s to stream audio. It seems that Flash player does not natively support ogg. Is there a codec engine that can be embedded with the app itself that can ...
2
votes
3answers
2k views
Recommended Android music format - mp3, ogg or other?
I've been asked which format I need the music for my project in and, looking through the documentation, it seems that the Android platform offers a good choice.
Audio is certainly not my forte so I'm ...
2
votes
3answers
387 views
Good MP3 or OGG Decoder written in C
Hey, I was looking for a good MP3 or OGG decoder that use the BSD license or public domain and that is also light-weight (something that comes with sources without the need of platform specific ...
1
vote
2answers
66 views
Java ID3 audio tags lib
I'm looking for a good libraries to edit .mp3 tags ID3v(22,23,24) (like author, title, track and this kind of stuff), write in java or clojure, any ideas ?
There is some standard "de facto" in this ...
1
vote
1answer
61 views
How to process mp3s in a commercial application without paying outrageous license fees
I have an application that uses a version of sox compiled with lame for mp3 support. The application won't generate enough revenue to justify the $15000 a year minimum license fee for mp3 processing.
...
1
vote
1answer
341 views
Best way to stream mp3
I need to organize mp3-streaming from my machine to the rest of the world. People advised me to use MPD with Icecast2 as frontend. Everything is ok except one thing — music is being streamed as Ogg ...
1
vote
1answer
310 views
Using finch first time. How to play mp3,ogg or other formats (wav files to big)?
My *.wav's work as expected. But wav files are to big, so I want to play *.mp3 or *.ogg but it doesn't work.
I use this lines of code found in the finch Demo project
engine = [[Finch alloc] init];
...
1
vote
2answers
616 views
Best library for audio file meta data?
I am looking for a library to read meta data from compressed and uncompressed audio files (i.e. mp3, ogg, etc.). In the past I have used libvorbis and id3lib, but I'm wondering if there are better ...
0
votes
1answer
155 views
Protect audio files in HTML5 audio tags
I am making a site which will have music playing on the site using HTML5 tags and was wondering if there was any way to protect the files from being downloaded?
I am calling the music file through ...
0
votes
1answer
70 views
Looping multiple single song audio players for continuous play
I am trying to link audio players so that when one finishes, the next song will start playing. I will have an endless number of players, so I am wondering how to do this. This is pretty straight ...
0
votes
1answer
91 views
MP3, firefox, email, javascript, jplayer
i want to play audio 2 ways
Through my website (easier, as i can detect the browser)
sending an email which will have a player to stream the audio
restrictions.
1. Firefox wont play MP3
2. ...
0
votes
0answers
230 views
mp3 does not loop after set as ringtone
I am writing a soundboard application for Android and I'm currently using mp3s. After setting them as ringtone they are played only once and won't loop. Apparently most people just convert them to ogg ...
0
votes
1answer
27 views
audio bandwidth support like youtube bandwidth suport
i have thousands of audio files, which some are in low kbs and some high and some both.
following is the list of kbs i have for files
32kbs
40kbs
64kbs
128kbs
192kbs
i was wondering, should i ...
0
votes
1answer
1k views
Convert mp3 to ogg via php
I have a website where users can upload music and get it converted to mp3, but I need mp3 and ogg file support to play the music in html5. So, is there any php script that can convert mp3 to ogg?
0
votes
1answer
300 views
jplayer play between certain percents of time in jquery
I know I can start jPlayer at a given point in time or by percent by doing:
$("#jquery_jplayer").jPlayer("playHead", 30);
This is when issuing the play command (works fine), but how can I constrain ...
0
votes
3answers
458 views
Merge two mp3 php
Do you know a class to merge two mp3 in php ?
I've found nothing serious on google.
Thank you !
0
votes
3answers
185 views
Is it possible to read music file metadata using R?
I've got a bunch of audio files (let's say ogg or mp3), with metadata.
I wish to read their metadata into R so to create a data.frame with:
file name
file location
file artist
file album
etc
Any ...