Search found 5 matches

by CK13
Fri Oct 16, 2015 5:07 pm
Forum: Command Line Interface And Scripting
Topic: Powershell omits subtitles, CMD does not
Replies: 9
Views: 5312

Re: Powershell omits subtitles, CMD does not

So i tried your settings on my script and i got subs, even though it's disabled by default. Here is the script: # Path to HandBrakeCLI .exe $handbrakecli = "path\to\HandBrakeCLI.exe"; # Path to output folder $out_dir = "path\to\output\"; # Loop through all items in a directory # ...
by CK13
Fri Oct 16, 2015 5:01 pm
Forum: Command Line Interface And Scripting
Topic: Problem with space in filename
Replies: 5
Views: 2058

Re: Problem with space in filename

With the settings above i'm getting both subtitles (i'm "burning" them on the video though) and chapters.
by CK13
Fri Oct 16, 2015 4:03 pm
Forum: Command Line Interface And Scripting
Topic: Problem with space in filename
Replies: 5
Views: 2058

Re: Problem with space in filename

After some research i managed to put up a powershell script that encodes files in the folder where the script is and encodes files that have a certain extension. # Path to HandBrakeCLI .exe $hbcli_dir = "path\to\HandBrakeCLI.exe"; # Path to output folder # example -> $out_dir = "C:\Us...
by CK13
Fri Oct 16, 2015 1:35 pm
Forum: Command Line Interface And Scripting
Topic: Problem with space in filename
Replies: 5
Views: 2058

Re: Problem with space in filename

That works, thank you.
by CK13
Fri Oct 16, 2015 4:57 am
Forum: Command Line Interface And Scripting
Topic: Problem with space in filename
Replies: 5
Views: 2058

Problem with space in filename

Hello! I'm using the following script to encode all files in a folder to .mp4: SET profile=-e x264 -O -q 20.0 -t 1 -f mp4 -w 1280 -s 1 --subtitle-burn --loose-anamorphic --modulus 2 -m --x264-preset medium --h264-profile high --h264-level 4.1 SET hb_cli=E:\Programe\Multimedia\handbrake\HandBrakeCLI....