Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

I'm hacking SoX to fix soxi's idea of the average bit-rate of an audio file; previously it did: 8 * file_size / length_in_seconds but that makes very short files report huge bit rates, so it is to ...
martinwguy's user avatar
  • 1,017
0 votes
1 answer
1k views

I am trying to distribute a recent project - but need a way to download a few dependencies if the target OS is UNIX: if (UNIX) message("Detected Linux OS - install required") #...
Gamaray's user avatar
  • 151
0 votes
0 answers
364 views

I slightly modified the opus provide sample file "trivial_example.c" I modified it so instead of loading a pcm file from disk, I just create some noise using random numbers. Maybe that is ...
Archon 808's user avatar
-1 votes
1 answer
971 views

im playing with my video files, I want to convert them from mp4, mkv, wmv, avi, flv, mov... to webm. So I have written this: for file in * do if [ -f "$file" ] then filename=&...
uchi's user avatar
  • 101
0 votes
1 answer
363 views

I'd like to play an Ogg/Vorbis audio/video file, but right now I can't get to read audio from a file. My algorithm to read audio is: Initialize required structures: vorbis_info info; vorbis_comment ...
Felix.leg's user avatar
  • 843
0 votes
0 answers
900 views

BH I'm trying to make a basic audio editor / cutter and exporter with native JavaScript, so far I have been able to read the raw PCM data of input audio files using AudioContext.deocdeAudio, as well ...
B''H Bi'ezras -- Boruch Hashem's user avatar
0 votes
1 answer
448 views

I'm trying to generate build files for sfml on linux ubuntu using cmake, but the dependencies were not installed. I installed most with not issues, but one still persists. I got the following error ...
user avatar
0 votes
0 answers
237 views

I need to use the Vorbis Library in a project for Mac OS X. I've compiled the OGG and Vorbis libraries and added them as a framework in the project. The problem is that cannot load them when running ...
Gabi Fintescu's user avatar
2 votes
1 answer
1k views

I am using this library (https://github.com/theeasiestway/android-opus-codec) to encode and decode audio files. I can store the encoded opus file then decode and play via AudioTrack. But i need to ...
arun's user avatar
  • 41
0 votes
0 answers
384 views

guys am trying to read different audio formats with help of sound SPI. I have added sound SPI to classpath but still for some reason its not being used/or not detected. Am using vorbisspi and am ...
klaus's user avatar
  • 103
2 votes
1 answer
5k views

Is there a command to tell me what type of metadata container is using a file? Something like: command myfile.flac saying: vorbis comment or id3v2.
Izaya's user avatar
  • 1,618
0 votes
0 answers
38 views

I'm writing a program in Javascript and I've managed to get an opus audio stream working but I need to find the volume from this stream. Anyone got any ideas on how this could be done? Thanks :)
HerbHerbHerbert's user avatar
0 votes
1 answer
242 views

Input: a stream of ogg/vorbis coming from an encoder chip of an embedded system. Problem: create output chunks of one second without transcoding. Issue: the stream is being read "in the middle", so ...
Gibezynu Nu's user avatar
0 votes
1 answer
528 views

I installed libvorbis-div with sudo apt install libvorbis-dev. But when i tried to compile my simple code with gcc a.c command, i get "undefined reference to `vorbis_info_init'" error. a.c #include ...
ZGC's user avatar
  • 124
0 votes
1 answer
549 views

I have access to files that contain audio streams in ogg format. They are continuous and are played in our html files using an audio tag: <div style="display: none;"> <audio ...
bryanforst's user avatar

15 30 50 per page
1
2 3 4 5
7