Crates.io | ffmusicsync |
lib.rs | ffmusicsync |
version | 1.1.0 |
source | src |
created_at | 2022-05-15 15:37:11.254285 |
updated_at | 2022-07-05 15:23:38.467204 |
description | A simple utility which creates an encoded music folder out of your library and keeps it updated using as least ffmpeg runs as possible. |
homepage | https://github.com/xNyaDev/ffmusicsync/ |
repository | https://github.com/xNyaDev/ffmusicsync/ |
max_upload_size | |
id | 587206 |
size | 69,690 |
A simple utility which creates an encoded music folder out of your library and keeps it updated using as least ffmpeg runs as possible.
(Original Mix)
in every single name, customizable*See the lofty crate for a list of supported formats to copy from/to
config.json
can contain comments, so you can just copy-paste the example.
{
// Input and output directory
// Can be either a string or an object:
// If it's a string and contains a ':', it will be treated as an rclone remote
"inputDirectory": "MyStorage:FLAC",
"outputDirectory": {
// Both fields are optional
// If remote is not present or blank it will be treated as a local location
"remote": "MyStorage",
"path": "Encoded"
},
// Optional, used only when either the input or output directory is remote
"tempDirectory": "temp",
// An array of all extensions that will be encoded
// All that are not present here (such as mp3 in this case) will be just copied to the output directory
"extensionsToEncode": [
"flac"
],
// A string containing the extension for encoded files
"encodedExtension": "ogg",
// Add covers to files after encoding them
// ffmpeg can't do that by itself for OGG files
// The option doesn't need to be present, defaults to false
"copyCovers": true,
// A string containing the ffmpeg params
// ffmpeg command looks like:
// ffmpeg -i <INPUT> <PARAMS> <OUTPUT>
"ffmpegParams": "-c:a libopus -b:a 128K -vn",
// Whether to remove brackets, the options don't need to be present,
// in which case it will behave the same way as if they were set to false
// When set to true it will remove everything in between the brackets as well as one leading/trailing space
// Example with the below config:
// [LABEL] Author - Title (Original Mix) [YEAR].mp3
// Would be renamed to:
// Author - Title (Original Mix).mp3
"removeRoundBrackets": false, // ()
"removeSquareBrackets": true, // []
"removeCurlyBrackets": false, // {}
"removeAngleBrackets": false, // <>
}
-c
, --config
- Specify the config file (default: config.json)--color
- Force colors to be enabled--dry-run
- Do a trial run with no actual changes-e
, --encoded
- Specify the file storing info which songs are already encoded (default: encoded.json)-h
, --help
- Print help information-q
, --quiet
- Suppress ffmpeg output-V
, --version
- Print version information-y
, --yes
- Always assume "yes" as the answer to all prompts and run non-interactivelyLicensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.