rsmaior

Results 5 comments of rsmaior

@MisterZeus, as I know it ReplayGain is always used as a tag, it never clips the audio directly. From my research, I could find that the wiki lists that as...

While the official support is not here, I just found two nice third-party that can do the job (both using R128_TRACK_GAIN of course). https://github.com/kepstin/regainer and https://github.com/desbma/r128gain (this one besides the...

@rillian you said "NB opusenc will convert ReplayGain tags attached to input flac files" but I read [here](https://hydrogenaud.io/index.php/topic,114513.msg943732.html#msg943732) that the Opus RFC itself recommends avoid this. Is that correct?

While we don't have `opusenc *.opus` I do ``` for file in *; do opusenc --bitrate 64 "$file" "${file/'.flac'/}".opus done ``` (works both in terminal and bash script)

Before calling **d = Downloader()** try setting your working directory to the one with your credentials.json. The following code works for me: ``` import os from zdrive import Downloader output_directory...