Page 1 of 1

Increasing a file's volume using VLC CLI

Posted: 17 Jul 2014 13:04
by cool-RR
Hi,

I use the following AutoHotKey snippet to encode a file to MP3:

Code: Select all

run_string := "bash -c ""\""c:\Program Files\VideoLAN\VLC\vlc.exe\"" -I dummy \""" . file_path . "\"" --sout='#transcode{acodec=mp3,vcodec=dummy}:standard{access=file,mux=raw,dst=\""" . file_path . ".mp3\""}' vlc://quit"""
How can I modify this line to not only encode to mp3, but also increase the volume of the file by 50%? I tried setting "--volume 150" but it just made the file play, while I don't want to play, I want to have it saved with that volume.


Thanks,
Ram.

Re: Increasing a file's volume using VLC CLI

Posted: 21 Jul 2014 10:19
by cool-RR
Hey-ho... Does anyone have a clue how to do this?