GPU doesnt seem to do encoding despite being enabled. #491
Unanswered
FlattusBlastus
asked this question in
Q&A
Replies: 1 comment
-
Removed -crf 22 and --quality 22 as it isnt supported for gpu encodes. FFMPEG is all CPU but Handbrake is occasionally using the GPU. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I do two files at a time to convert to h265 / hevc and aac. CPU reports at 100% while the GPU is mostly idle. Shouldn't be the other way around?
Execute is command shell in Windows 11 Enterprise IoT LTSC:
PlexCleaner.exe process --settingsfile c:\plexcleaner\plexcleaner.json --mediafiles D:\D\S --parallel --threadcount 2
PlexCleaner.json
{
"$schema": "https://raw.githubusercontent.com/ptr727/PlexCleaner/main/PlexCleaner.schema.json",
"SchemaVersion": 4,
"ToolsOptions": {
"UseSystem": false,
"RootPath": ".\Tools\",
"RootRelative": true,
"AutoUpdate": true
},
"ProcessOptions": {
"FileIgnoreMasks": [
".ass",
".fuse_hidden*",
".jpg",
".nfo",
".partial~",
".sample.",
".sample",
".smi",
".srt",
".ssa",
".vtt"
],
"KeepOriginalLanguage": false,
"RemoveClosedCaptions": true,
"SetIetfLanguageTags": true,
"SetTrackFlags": true,
"ReMuxExtensions": [
".asf",
".avi",
".dv",
".m2ts",
".m4v",
".mp4",
".ts",
".vob",
".wmv"
],
"ReEncodeVideo": [
{
"Format": "h264",
},
{
"Format": "indeo5"
},
{
"Format": "mpeg2video"
},
{
"Format": "mpeg4",
"Codec": "dx50"
},
{
"Format": "msmpeg4v2",
"Codec": "mp42"
},
{
"Format": "msmpeg4v3",
"Codec": "div3"
},
{
"Format": "msrle"
},
{
"Format": "rawvideo"
},
{
"Format": "vc1"
},
{
"Format": "wmv3"
},
{
"Format": "vp9"
},
{
"Format": "av1"
}
],
"ReEncodeAudioFormats": [
"adpcm_ms",
"flac",
"mp2",
"opus",
"pcm_s16le",
"pcm_u8",
"vorbis",
"wmapro",
"aac",
"wmav2"
],
"KeepLanguages": [
"en"
],
"PreferredAudioFormats": [
"ac-3",
"e-ac-3"
],
"DeleteEmptyFolders": true,
"DeleteUnwantedExtensions": false,
"ReMux": true,
"DeInterlace": true,
"ReEncode": true,
"SetUnknownLanguage": true,
"DefaultLanguage": "en",
"RemoveUnwantedLanguageTracks": true,
"RemoveDuplicateTracks": true,
"RemoveTags": true,
"UseSidecarFiles": true,
"SidecarUpdateOnToolChange": true,
"Verify": true,
"RestoreFileTimestamp": true,
"FileIgnoreList": []
},
"ConvertOptions": {
"FfMpegOptions": {
"Video": "hevc_nvenc -crf 22 -preset medium",
"Audio": "ac3",
"Global": "-hwaccel cuda -hwaccel_output_format cuda"
},
"HandBrakeOptions": {
"Video": "nvenc_h265 --quality 22 --encoder-preset medium",
"Audio": "copy --audio-fallback ac3"
}
},
"VerifyOptions": {
"AutoRepair": true,
"DeleteInvalidFiles": true,
"RegisterInvalidFiles": false,
"MaximumBitrate": 100000000
},
"MonitorOptions": {
"MonitorWaitTime": 60,
"FileRetryWaitTime": 5,
"FileRetryCount": 2
}
}
Beta Was this translation helpful? Give feedback.
All reactions