Increasing a file's volume using VLC CLI
Posted: 17 Jul 2014 13:04
Hi,
I use the following AutoHotKey snippet to encode a file to MP3:
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.
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"""
Thanks,
Ram.