From 1a2fd40ae425bc2510cce3cbf3e8dcde798a82fd Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 12 Sep 2023 13:21:24 +0200 Subject: [PATCH] Movie / Tv-Shows: Created HandBrake entry --- wiki/handbrake.md | 160 ++++++++++++++++++++++++++++++++++++++ wiki/movies_&_tv_shows.md | 10 ++- 2 files changed, 166 insertions(+), 4 deletions(-) create mode 100644 wiki/handbrake.md diff --git a/wiki/handbrake.md b/wiki/handbrake.md new file mode 100644 index 0000000..a14364d --- /dev/null +++ b/wiki/handbrake.md @@ -0,0 +1,160 @@ +# HandBrake + +[HandBrake](handbrake.md) is an open-source and multi-platform program that can compress video +files. + +## Setup + +Various ways to set up HandBrake can be found on +[their website](https://handbrake.fr/downloads.php). + +## Usage + +On [Windows](/wiki/windows.md) and Mac the program can be started by clicking the icon. +This way is also possible on [Linux based operating systems](/wiki/linux.md). +Additionally the command `ghb` can be called in the [Terminal](/wiki/linux/shell.md). + +### Presets + +Presets are used to store settings that specify the transcoding of video files. + +#### Importing and Exporting Presets + +Presets can be imported and exported from HandBrake by selecting `Presets`, `Actions` and then +`Import` or `Export`. + +#### Simple 1080p AC-3 Encoding + +The following is a preset that is a `.json` file which is used for the transcoding of movies to +1080p and AC-3 audio. +This can save some disc space. + +```json +{ + "PresetList": [ + { + "AlignAVStart": true, + "AudioCopyMask": [ + "copy:aac", + "copy:ac3" + ], + "AudioEncoderFallback": "av_aac", + "AudioLanguageList": [ + "any" + ], + "AudioList": [ + { + "AudioBitrate": 192, + "AudioCompressionLevel": -1.0, + "AudioDitherMethod": "auto", + "AudioEncoder": "av_aac", + "AudioMixdown": "7point1", + "AudioNormalizeMixLevel": false, + "AudioSamplerate": "auto", + "AudioTrackDRCSlider": 0.0, + "AudioTrackGainSlider": -20.0, + "AudioTrackQuality": 3.0, + "AudioTrackQualityEnable": false + } + ], + "AudioSecondaryEncoderMode": false, + "AudioTrackSelectionBehavior": "all", + "ChapterMarkers": true, + "ChildrenArray": [], + "Default": true, + "FileFormat": "av_mp4", + "Folder": false, + "FolderOpen": false, + "InlineParameterSets": false, + "MetadataPassthrough": true, + "Mp4HttpOptimize": false, + "Mp4iPodCompatible": false, + "PictureAllowUpscaling": false, + "PictureAutoCrop": true, + "PictureBottomCrop": 140, + "PictureChromaSmoothCustom": "", + "PictureChromaSmoothPreset": "off", + "PictureChromaSmoothTune": "none", + "PictureColorspaceCustom": "", + "PictureColorspacePreset": "off", + "PictureCombDetectCustom": "", + "PictureCombDetectPreset": "default", + "PictureCropMode": 0, + "PictureDARWidth": 1920, + "PictureDeblockCustom": "strength=strong:thresh=20:blocksize=8", + "PictureDeblockPreset": "off", + "PictureDeblockTune": "medium", + "PictureDeinterlaceCustom": "", + "PictureDeinterlaceFilter": "decomb", + "PictureDeinterlacePreset": "default", + "PictureDenoiseCustom": "", + "PictureDenoiseFilter": "off", + "PictureDenoisePreset": "", + "PictureDenoiseTune": "none", + "PictureDetelecine": "off", + "PictureDetelecineCustom": "", + "PictureForceHeight": 0, + "PictureForceWidth": 0, + "PictureHeight": 1080, + "PictureItuPAR": false, + "PictureKeepRatio": true, + "PictureLeftCrop": 0, + "PictureModulus": 2, + "PicturePAR": "auto", + "PicturePARHeight": 1, + "PicturePARWidth": 1, + "PicturePadBottom": 0, + "PicturePadColor": "black", + "PicturePadLeft": 0, + "PicturePadMode": "none", + "PicturePadRight": 0, + "PicturePadTop": 0, + "PictureRightCrop": 0, + "PictureRotate": "angle=0:hflip=0", + "PictureSharpenCustom": "", + "PictureSharpenFilter": "off", + "PictureSharpenPreset": "", + "PictureSharpenTune": "", + "PictureTopCrop": 138, + "PictureUseMaximumSize": true, + "PictureWidth": 1920, + "PresetDescription": "Super high quality H.264 video (up to 1080p30), AAC stereo audio, and Dolby Digital (AC-3) surround audio, in an MP4 container.", + "PresetDisabled": false, + "PresetName": "Film, H.264 1080p slow, AC-3", + "SubtitleAddCC": false, + "SubtitleAddForeignAudioSearch": true, + "SubtitleAddForeignAudioSubtitle": false, + "SubtitleBurnBDSub": false, + "SubtitleBurnBehavior": "none", + "SubtitleBurnDVDSub": false, + "SubtitleLanguageList": [], + "SubtitleTrackSelectionBehavior": "none", + "Type": 1, + "UsesPictureFilters": true, + "VideoAvgBitrate": 15000, + "VideoColorMatrixCodeOverride": 0, + "VideoEncoder": "x264", + "VideoFramerate": "auto", + "VideoFramerateMode": "vfr", + "VideoGrayScale": false, + "VideoHWDecode": 0, + "VideoLevel": "4.1", + "VideoOptionExtra": "ref=5:bframes=5", + "VideoPreset": "slower", + "VideoProfile": "high", + "VideoQSVDecode": false, + "VideoQualitySlider": 18.0, + "VideoQualityType": 2, + "VideoScaler": "swscale", + "VideoTune": "film", + "VideoTurboTwoPass": false, + "VideoTwoPass": true, + "x264Option": "", + "x264UseAdvancedOptions": false + } + ], + "VersionMajor": 50, + "VersionMicro": 0, + "VersionMinor": 0 +} +``` diff --git a/wiki/movies_&_tv_shows.md b/wiki/movies_&_tv_shows.md index 5afdf73..c92693d 100644 --- a/wiki/movies_&_tv_shows.md +++ b/wiki/movies_&_tv_shows.md @@ -35,10 +35,12 @@ This way you don't have to search for your discs all the time. - [MKS Extractor GUI](https://www.videohelp.vom/software/MKS-Extractor-GUI) for windows can extract subtitles from a `.mkv` file. -- [Subtitleedit]([https://www.videohelp.vom/software/MKS-Extractor-GUI](https://www.nikse.dk/subtitleedit)) - for linux can extract subtitles from a `.mkv` file and do ocr. -- [VidCoder](https://vidcoder.net) for windows can compress `.mkv` files. Its an adapted version of the HandBrake software. -- [HandBrake]([https://vidcoder.net](https://handbrake.fr/)) for linux can compress `.mkv` files. +- [Subtitleedit](https://www.nikse.dk/subtitleedit)) for linux can extract subtitles from a `.mkv` + file and do ocr. +- [VidCoder](https://vidcoder.net) for windows can compress video files. Its an adapted version of + the HandBrake software. +- [HandBrake](handbrake.md) is an open-source and multi-platform program that can compress video + files. ## Naming schemes of movies and TV shows