Search found 14 matches

by ccccc
Mon Nov 27, 2023 2:52 am
Forum: Command Line Interface And Scripting
Topic: Problem resizing only larger than 720p in script/
Replies: 6
Views: 14374

Re: Problem resizing only larger than 720p in script/

Much about the script confuses me, and I'm not sure that you meant to say that you're converting MKV to MP3? I'm also confused why you'd be resampling the audio to 44.1 unless you're making CDs (that's just screwing with the audio quality for zero advantage). Either way, a batch file that will conve...
by ccccc
Mon Nov 30, 2015 6:53 am
Forum: Windows
Topic: Converting 16:9 video to 4:3
Replies: 21
Views: 5668

Re: Converting 16:9 video to 4:3

s55 wrote:No, they havn't.
The current nightlies for quite some time now have not done any automatic cropping. You can only crop manually.
by ccccc
Sat Nov 28, 2015 9:30 pm
Forum: Bugs
Topic: handbreak cli just disappears
Replies: 5
Views: 1960

Re: handbreak cli just disappears

My guess would be that the Cyko software that you're using can't pass unicode along. It's useless, so the solution is just to use Handbrake on its own.
by ccccc
Sat Nov 28, 2015 9:23 pm
Forum: Windows
Topic: Converting 16:9 video to 4:3
Replies: 21
Views: 5668

Re: Converting 16:9 video to 4:3

The current release and nightly CLI will automatically crop off the black bars. I believe that the current release GUI will also; however, the current nightly GUIs have removed this function so you have to automatically set the crop in the main tab using the preview feature.
by ccccc
Thu Nov 26, 2015 6:19 am
Forum: Windows
Topic: LG TV, Surround + Subtitles problems
Replies: 12
Views: 1350

Re: LG TV, Surround + Subtitles problems

I haven't yet met a 5.1 audio television, so I would expect that it'll downmix all audio to stereo. If you're trying to convey that you're plugging a USB drive into the television and then using an optical connection to connect the TV audio out to a 5.1 receiver, then the TV is forbidden from passin...
by ccccc
Mon Nov 23, 2015 12:50 am
Forum: Windows
Topic: Batch conversion with 1 .srt files for each .mp4 file-- How to do?
Replies: 12
Views: 1473

Re: Batch conversion with 1 .srt files for each .mp4 file-- How to do?

No quality setting will improve brightness, fine details, or any other element of the video. At the best setting, you just can't tell that the file has gotten any worse; it's impossible to add quality to a video stream by transcoding (recompressing) it. If it's low quality to begin with, then a plac...
by ccccc
Sun Nov 22, 2015 11:05 pm
Forum: Windows
Topic: Batch conversion with 1 .srt files for each .mp4 file-- How to do?
Replies: 12
Views: 1473

Re: Batch conversion with 1 .srt files for each .mp4 file-- How to do?

Okay... let's blank-slate this. 100% of your problems are that the HandbrakeCLI is absolutely useless at handling SRT files in a batch file if there's any complexity such as subdirectories. It also transcodes the SRT files into something else which is not optimal. We can therefore solve all of your ...
by ccccc
Sun Nov 22, 2015 4:23 am
Forum: Windows
Topic: Batch conversion with 1 .srt files for each .mp4 file-- How to do?
Replies: 12
Views: 1473

Re: Batch conversion with 1 .srt files for each .mp4 file-- How to do?

You're welcome. I'm not sure why it would go back and re-encode anything unless the Window 10 command interpreter has some quirks that I've never seen before (probably with the delayed expansion looping). Are your finished files MKVs? I've had problems before feeding mp4s to the CLI only because the...
by ccccc
Sat Nov 21, 2015 9:57 pm
Forum: Windows
Topic: Batch conversion with 1 .srt files for each .mp4 file-- How to do?
Replies: 12
Views: 1473

Re: Batch conversion with 1 .srt files for each .mp4 file-- How to do?

Is "H:\ 1 TT DL\BATCH TEST\tada S1 E19 flalalala.mp4" the location of the first file for encoding? The space in the first directory before the "1 TT" makes me suspicious that the batch file has " %%A" instead of "%%A" The log always shows searching for DVD/BR ...
by ccccc
Sat Nov 21, 2015 7:58 am
Forum: Windows
Topic: Batch conversion with 1 .srt files for each .mp4 file-- How to do?
Replies: 12
Views: 1473

Re: Batch conversion with 1 .srt files for each .mp4 file-- How to do?

I will assume that you're using Windows. You can do this with the CLI. Create a batch file with the following contents: @ECHO OFF setlocal enabledelayedexpansion FOR /R %%A IN (*.mp4) DO ( HandBrakeCLI.exe -f mkv -i "%%A" -o "%%~nA.mkv" -m -e x265 --x265-preset fast -q 24 --srt-f...
by ccccc
Sat Nov 21, 2015 6:57 am
Forum: Bugs
Topic: [Confirmed] Latest Build Crashes
Replies: 5
Views: 2148

Re: Latest Build Crashes

Crash confirmed here on Win7-64. Backstepping to 6b713ad works, but if you install the 6c731e1 hb.dll the crash returns.
by ccccc
Sat Jul 25, 2015 10:09 am
Forum: Windows
Topic: Nightly builds for Windows?
Replies: 38
Views: 8529

Re: Nightly builds for Windows?

Surely somebody can throw a build up once every week or two? I suspect that I'm not the only one using he nightlies and it's pretty drastic to just shut it all down.
by ccccc
Sat Aug 09, 2014 9:04 am
Forum: Command Line Interface And Scripting
Topic: Batch re-encode mp4´s with a set framsize (640x480)
Replies: 3
Views: 917

Re: Batch re-encode mp4´s with a set framsize (640x480)

In Windows I could create a batch file that would do this for you in a second. In OSX you'll need to script something and such scripts don't seem very popular. The command line that you'll need is easy at least and I can pass that along since you're not getting any suggestions. Hopefully that will h...
by ccccc
Thu Mar 13, 2014 6:46 am
Forum: Mac
Topic: How to Batch Encode? I have version 9.9
Replies: 3
Views: 800

Re: How to Batch Encode? I have version 9.9

The GUI isn't a batch tool and as you've discovered, using the queue for large batch jobs it not convenient. Assuming you're using Windows, just make a batch file that you can copy into the folder with all of your videos and run it. Feel free to take and tweak mine to meet your needs (click "se...