-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux does not support mp4 or m4a? #41
Comments
Makefile:
In os_source.h, there is no os_source definition for Linux? `#pragma once #include <ni/media/audio/source_impl.h> #include <boost/predef.h> #if BOOST_OS_MACOS || BOOST_OS_IOS `` |
On Linux, i got an error of Segmentation fault. ifstream.cpp:65] ifstream:ttt.wav std::string file="test.wav"; `ifstream::ifstream( const std::string& file )
} |
Mp3 and Mp4 are currently not supported on Linux. On linux only wav, aiff, ogg and flac extensions are supported see https://github.com/NativeInstruments/ni-media/blob/master/audiostream/doc/ifstream.md. The audio:.ifstream constructor will throw a runtime error when passing an unsupported file path, which is expected behavior. Client code should be using a try / catch block around the constructor and decide what to do in this case. |
Thanks@marcrambo |
How to generate a new music audio from scratch, in which there is track name, artist, etc,... |
@lqniunjunlper |
@FalconPDX Thanks |
Only wav?
The text was updated successfully, but these errors were encountered: