A simple, fast and reliable music library transcoder
Project description
AutoTranscode
A simple, fast and reliable music library transcoder
Overview
AutoTranscode is a Python script that can convert your losless (or mixed) music library into a lossy format, ideal for mobile devices with little space. It can encode to both MP3 and Opus, using ffmpeg as its encoder. You can also choose to track changes between runs - AutoTranscode uses a simple SQLite database to enable this. Finally, AutoTranscode runs its encoding jobs in paralell, meaning it can take full advantage of modern Multi-Core CPUS.
Below is a simple graphical representation of how AutoTranscode works:
- /your/music/library
- songa.flac
- subdir
- songb.flac
- songc.mp3
- songd.wav
- coverart.jpg
|
V
AutoTranscode <-----> database.db
|
V
fmpeg + cp
|
V
- /you/music/mirror
- songa.mp3
- subdir
- songb.mp3
- songc.mp3
- songd.mp3
coverart.jpg
Installation
Requirements
AutoTranscode should run on any modern Linux distribution (Ubuntu 16.04+, Fedora, CentOS, etc.) that meets the requirements below. MacOS, BSD and Windows should theoretically work, but are not tested at all. Let me know if you have any sucess on those platforms.
Requirements:
- Python 3.5 or later with pip
- ffmpeg installed and in $PATH
- Codecs for ffmpeg MP3 encoding installed (if you want to encode to MP3)
The easiest way to install AutoTranscode is through pip. Simply run
$ pip install --user autotranscode
to install AutoTranscode for your current user. Note that installing pip packages as sudo is discouraged
ffmpeg
See your distros documentation on how to install ffmpeg. Quick summaries for the most popular distros can be found below
Ubuntu LTS 12.04 and newer, Debian 7 and newer, Linux Mint 18 and newer:
sudo apt-get install ffmpeg libavcodec-extra
Note that Ubuntu 14.04 and Debian 8 use libav-tools, a fork of ffmpeg which is not supported. Symlinking avconv to ffmpeg should work, but is not supported
Fedora 26 and newer:
sudo dnf install ffmpeg
Older versions of fedora may not ship with MP3 support. If you want to encode to MP3, you might have to use extra repositories like RPMFusion.
RHEL/CentOS 6 and newer:
You will need to install both the EPEL and RPMFusion repositories. Once they are enabled, you can install ffmpeg with:
sudo yum install ffmpeg
Arch Linux/Manjaro:
sudo pacman -S ffmpeg
Quick Start
One-time encode:
$ autotranscode /path/to/library /path/to/target -C
Regular encode with tracking:
$ autotranscode /path/to/library /path/to/target -C -D /path/to/db.db -R
Note: Remove -C
if you don't want to copy non-losless files to the target directory. For more information on these flags, see the [Command-line parameters](## Command-line parameters) section
Command-line parameters
To get an brief explanation of all options, use the -h --help
flag. The following options are currently available:
General Options:
-
-C --copy-files
- Copy all non-lossless files in your library path to your destination path. This includes all other files, includig lossy music files such as MP3s -
-D --database path/to/db
- Track the library in a given databse. This prevents unnedded encode jobs on repeated runs and allows tracking of file deletions with-R --remove
. The databse will be created and managed by AutoTranscode -
-R --remove
(requires --database) - Track the deletion of files, using the database. This means that if you remove a file in the library, its encoded version in the mirror will be removed as well.
Encoding Options:
-
-O --output
- Set output file format. Currently supported: "mp3" (default), "opus" -
-Q --quality
- Set VBR output quality (bitrate). Values range from 0 (~256 kbit/s, default) to 9 (~64 kbit/s). -
--art-size
- Set size of the album art when encoding to MP3. Set to 1200 by default to avoid compatibility issues with some devices (Android)
Logging Options:
-
-l --loglevel
- Set the ammount of information printed to the console. Values: "CRITICAL", "ERROR", "WARNING" (default), "INFO", "DEBUG" -
--no-progressbar
- Disable the fancy progressbar
Miscellaneous Options:
-
-t --threads
- Set the ammount of CPU thredas to use for encoding tasks. Default is the systems number of logical cores -
--version
- Print the version number, then exit
FAQ
Q: My Opus files don't have all of their tags/are missing ther album art!
This issue is related to how ffmpeg handles FLAC to Opus/OGG conversion and is not something that I can currently fix, unfortunatley
Changelog
0.9.6
- Fixed MP3 encoding failing because of int to str conversions
0.9.5
- Added --art_size option
0.9.3
- Release to PyPi
0.9.1
- Minor bugfixes
0.9.0
- Initial Release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file autotranscode-0.9.8.tar.gz
.
File metadata
- Download URL: autotranscode-0.9.8.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23fba3ed040532b212ae188e6e91adef091dbcad27d54b63595b6ed13beee17c |
|
MD5 | 84aec4c3660a36211752f167e9fc3609 |
|
BLAKE2b-256 | bb30237c980150acec59bcc414962f8d28851cf242a376a4f4f599f9f7b94acd |