1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# LAME Audio Encoder add-on for Kodi
This is a [Kodi](https://kodi.tv) LAME audio encoder add-on.
Addon uses the [lame library](https://lame.sourceforge.io/) to provide support for Kodi to create mp3 files.
#### CI Testing
[](LICENSE.md)
[](https://travis-ci.com/xbmc/audioencoder.lame/branches)
[](https://dev.azure.com/teamkodi/binary-addons/_build/latest?definitionId=22&branchName=Nexus)
[](https://jenkins.kodi.tv/blue/organizations/jenkins/xbmc%2Faudioencoder.lame/branches/)
[](https://scan.coverity.com/projects/5120)
<!--- [](https://ci.appveyor.com/project/xbmc/audioencoder-lame?branch=Nexus) -->
## Build instructions
When building the addon you have to use the correct branch depending on which version of Kodi you're building against.
If you want to build the addon to be compatible with the latest kodi `master` commit, you need to checkout the branch with the current kodi codename.
Also make sure you follow this README from the branch in question.
### Linux
1. `git clone --branch master https://github.com/xbmc/xbmc.git`
2. `git clone --branch Nexus https://github.com/audioencoder.lame/audioencoder.lame.git`
3. `cd audioencoder.lame && mkdir build && cd build`
4. `cmake -DADDONS_TO_BUILD=audioencoder.lame -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addons`
5. `make`
The add-on files will be placed in `../../xbmc/addons` so if you build Kodi from source and run it directly
the add-on will be available as a system add-on.
##### Useful links
* [Kodi's add-ons development support](https://forum.kodi.tv/forumdisplay.php?fid=26)
|