https://github.com/luozijun/rust-fdkaac-sys
Rust FDK AAC library bindings
https://github.com/luozijun/rust-fdkaac-sys
aac aac-decoder aac-encoder audio fdk-aac
Last synced: 20 days ago
JSON representation
Rust FDK AAC library bindings
- Host: GitHub
- URL: https://github.com/luozijun/rust-fdkaac-sys
- Owner: LuoZijun
- License: mit
- Created: 2018-11-06T02:31:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-21T02:01:12.000Z (over 7 years ago)
- Last Synced: 2024-05-23T04:26:08.384Z (about 2 years ago)
- Topics: aac, aac-decoder, aac-encoder, audio, fdk-aac
- Language: Rust
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Rust FDK AAC bindings
=========================
:Date: 11/06 2018
.. contents::
前置条件
----------
请确保你的操作系统已经有了以下命令行程序可供使用(大部分系统里面都已经内置):
* make
* git
* cc(gcc/clang)
* c++(g++/clang++)
* ar
* nasm
* autoreconf
* mkdir
* cp
* bash
编译
-----------
.. code:: bash
git clone --recurse-submodules -j8 https://github.com/LuoZijun/rust-fdkaac-sys.git
cargo build
测试(Test)
-------------
.. code:: bash
cargo test --release
用例
-------------
*Cargo.toml*:
.. code:: toml
[dependencies]
fdkaac-sys = { git = "https://github.com/LuoZijun/rust-fdkaac-sys" }