The libsndfile tag has no wiki summary.
3
votes
2answers
301 views
Simple Verilog VPI module to open audio files
I would like to write a VPI/PLI interface which will open audio files (i.e. wav, aiff, etc)
and present the data to Verilog simulator. I am using Icarus at the moment and wish to
use libsndfile to ...
3
votes
1answer
647 views
Can the Libsndfile library be used on the iPhone iOS?
Can the Libsndfile C library be used on the iPhone operating system? If so, do I need to just 'include' it, or is it more complicated then that.
Thanks!
2
votes
2answers
178 views
Bad Format Using hsndfile (libsndfile)
I'm trying to use hsndfile (the Haskell binding for libsndfile) to generate a .wav file, and I've reached yet another hump I can't get past. The following code throws the error "Bad format." (as ...
2
votes
1answer
357 views
Python module audiolab returns error when function is called
I need to install the Python module audiolab for a research project, and while I have managed to install it and get the module to import in the Python shell, it returns an error in calling one of the ...
2
votes
1answer
109 views
Java equivalent of C++ sf_readf_double()
I'm manipulating .wav audio files in Android.
So far things are going well (I can record a .wav file from the mic, add echoes etc.), but I'd like to mimic the behaviour of sf_readf_double() and ...
2
votes
3answers
461 views
What should I use in Android when porting C++ code written with libsndfile?
I'm porting a small (<10 classes) C++ project to Java. The project manipulates sound files, and in C++ does this using libsndfile. The code includes stuff like:
const int channels = ...
1
vote
2answers
48 views
Using libsndfile to play sound real time c++ in qt
I am using using libsndfile read and manipulate sound files.
I am wandering what whould be the simplest way to play these sounds in real time
in Qt.
I have tried to look at QtAudioOutput, however has ...
1
vote
3answers
77 views
Audio file format that can be written without seeking
I want to write audio data to stdout, preferably using libsndfile. When I output WAV to /dev/stdout I manage to write the header, but then I get an error
Error : could not open file : /dev/stdout
...
1
vote
1answer
251 views
How to read/write high-resolution (24-bit, 8 channel) .wav files in Java?
I'm trying to write a Java application that manipulates high resolution .wav files. I'm having trouble importing the audio data, i.e. converting the .wav file into an array of doubles.
When I use a ...
1
vote
2answers
234 views
How can I compile libsndfile under ubuntu 11.04?
How can I compile libsndfile under ubuntu 11.04 ?
Should I use g++ or something?
1
vote
1answer
357 views
Undefined Symbol: _sf_open (Simple audio stuff on OSX)
I'm trying to get into C++ programming, and I'm quite struggling against the little details. Right now, I'm trying to get the snippet below to work, and apparently it will compile, but not link. ...
0
votes
1answer
52 views
ImportError: DLL load failed regarding sndlib / libsndfile
I am using Windows 7 64 bit.
I have these imports
from scikits.audiolab import Sndfile
import numpy as NumpyObj
import matplotlib.pyplot as plt
from itertools import groupby
import heapq
import ...
0
votes
1answer
56 views
Adding a .dll to a NetBeans 7.0 C project. Unable to view .dll
I am trying to read a .wav file and hence need to include the libsndfile binary in my project. I am using NetBeans 7.0 and the Tools->Library->Add new library option doesnt work since the Add library ...
0
votes
0answers
28 views
Common method for dynamically and concurrently streaming audio from the hard disk with sndfile and jack?
Is there a common method for dynamically and concurrently streaming audio from the hard disk out to the 8 possible channels on my soundcard using libsndfile and libjack?
I am writing an audio ...
0
votes
1answer
111 views
libsndfile on iOS
Nowdays I met a strange link problem when I try to use libsndfile on iOS:
I've compiled libsndfile on MACOSX 10.6.8 and it passed all the checks. But when I added it to the Xcode and tried to compile ...
0
votes
0answers
116 views
Link libsndfile to Qt Creator on Windows 7
I have installed libsndfile on my Windows 7 computer and I am using Qt creator to build my app. I need to use the libsndfile for my app to read and write audio files, however I can't seem to be able ...
0
votes
2answers
5k views
How to fix an UnsatisfiedLinkError (Can't find dependent libraries) in a JNI project
I'm working on a Java project that uses the JNI. The JNI calls a custom library that I've written myself, let's say mylib.dll, and that depends on a 3rd party library, libsndfile-1.dll.
When I run ...
0
votes
1answer
286 views
libsndfile usage joining and mixing .wav files
I need help getting started with libsndfile.
I have four .wav files (all the same sample rate).
I want to join the first two together,then the next two together,
Then mix the resulting 2 .wav files ...
0
votes
0answers
56 views
Reading and analysing .snd format file
Hi
I am not very good with programming so i need u guys to help me a bit.
What i want is a C program that can read .snd format audio file and check it for beats/ peak values. It should give the value ...
0
votes
1answer
571 views
Package libsndfile-dev has no installation candidate
I am trying to install "libsndfile-dev". I do the following:
sudo apt-get install libsndfile-dev
As the result I get the following:
Reading package lists... Done
Building dependency tree
...
0
votes
1answer
659 views
How do I access functions from libsndfile-1.dll in MSVC?
I'm having trouble getting libsndfile-1.dll to work in my MSVC project. I can load the library and retrieve the version string from the dll by calling sf_command() from my code. However, ...