-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml.example
40 lines (34 loc) · 1.36 KB
/
config.yaml.example
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
35
36
37
38
39
40
# Put the top level folder of your music collection here
source: /home/devkid/NAS/Musik
# List paths inside your collection that should never be synced
exclude:
- Strange stuff
- Other strange stuff
target:
# For MTP transfer: specify the device serial number, followed by the path on the device.
# In this example, "a0d5770c" is the device serial number and the virtual path "sdcard1" points to the micro SD card in the device.
mtp: a0d5770c/sdcard1
# Alternatively, specify a local filesystem path to sync your music files to. (Will be ignored if "mtp" is configured.)
path: /tmp/sync/
# Define the folders under which music and playlist files are synced to.
# The folders are relative to the target folder configured above.
folders:
music: Music # will result in /tmp/sync/Music if above "path" configuration is used
playlists: Playlists
# List of MIME types that are understood by the target device and don't need transcoding.
supported_mime:
- audio/mp3
- audio/mp4
- audio/mpeg
- audio/aac
- image/jpeg
- image/png
- image/gif
- image/bmp
- video/mp4
- video/mpeg
- video/x-ms-asf
# These settings will be applied to files that don't match above list. Those files will be transcoded by the FFmpeg with the settings below.
transcode:
extension: mp3
ffmpeg: -codec:a libmp3lame -qscale:a 0 -threads 8