almulder

Members
  • Posts

    218
  • Joined

  • Last visited

Everything posted by almulder

  1. It uses the GPU when using a community plugin, but not if I create one. (GTX 1050Ti) Also I have added a filter to exclude 480p,576p,720p,1080p, but it still grabs all my movies files. I don't understand why. Here is my current custom local plugin: var fs = require('fs'); var path = require('path'); if (fs.existsSync(path.join(process.cwd() , '/npm'))) { var rootModules = path.join(process.cwd() , '/npm/node_modules/') } else{ var rootModules = '' } const importFresh = require(rootModules+'import-fresh'); const library = importFresh('../methods/library.js') module.exports.details = function details() { return { id: "lqc85voaT", Name: "Downsize >1080p", Type: "Video", Operation: "Transcode", Description: "", Version: "", Link: "" } } module.exports.plugin = function plugin(file) { //Must return this object at some point var response = { processFile : false, preset : '', container : '.mkv', handBrakeMode : false, FFmpegMode : true, reQueueAfter : true, infoLog : '', } response.infoLog += "" + library.filters.filterByResolution(file,"exclude","480p,576p,720p,1080p").note if((true &&library.filters.filterByResolution(file,"exclude","480p,576p,720p,1080p").outcome === true) || file.forceProcessing === true){ response.preset = '--encoder x265 --quality 24 --encoder-level "5.1" --encoder-preset 6 --maxWidth 1920 --maxHeight 1080 --aencoder copy --all-audio --audio-copy-mask aac,ac3,eac3,truehd,dts,dtshd,mp3,flac --audio-lang-list eng --all-subtitles --subtitle-lang-list eng --subtitle-forced' response.container = '.mkv' response.handBrakeMode = true response.FFmpegMode = false response.reQueueAfter = true; response.processFile = true response.infoLog += "File is being transcoded using custom arguments \n" return response }else{ response.processFile = false; response.infoLog += "File is being transcoded using custom arguments \n" return response } }
  2. LOL Duh, I knew that, and yes I am using that docker, but it only transcodes via the gpu on 2 plugins, all others are done on cpu, and I cant figure out how to get it ot use the gpu.
  3. Not sure. How do I check and set that? I tried looking at 2 other plugins that use gpu (That work) and see no mention of tdarr_aio. Also do you know how to show forced subtitles, and add a filter to skip if the file is already H265 and at max width and height? Here is what I have: var fs = require('fs'); var path = require('path'); if (fs.existsSync(path.join(process.cwd() , '/npm'))) { var rootModules = path.join(process.cwd() , '/npm/node_modules/') } else{ var rootModules = '' } const importFresh = require(rootModules+'import-fresh'); const library = importFresh('../methods/library.js') module.exports.details = function details() { return { id: "N7N25RIjg", Name: "Testing", Type: "Video", Operation: "Transcode", Description: "Testing", Version: "", Link: "" } } module.exports.plugin = function plugin(file) { //Must return this object at some point var response = { processFile : false, preset : '', container : '.mkv', handBrakeMode : false, FFmpegMode : true, reQueueAfter : true, infoLog : '', } response.infoLog += "" + library.filters.filterByResolution(file,"exclude","480p,576p,720p,1080p").note + library.filters.filterByCodec(file,"exclude","h265").note if((true &&library.filters.filterByResolution(file,"exclude","480p,576p,720p,1080p").outcome === true &&library.filters.filterByCodec(file,"exclude","h265").outcome === true) || file.forceProcessing === true){ response.preset = '--encoder x265 --quality 24 --encoder-level "5.1" --encoder-preset 6 --maxWidth 1920 --maxHeight 1080 --aencoder copy --all-audio --audio-copy-mask aac,ac3,eac3,truehd,dts,dtshd,mp3,flac --audio-lang-list eng --all-subtitles --subtitle-lang-list eng' response.container = '.mkv' response.handBrakeMode = true response.FFmpegMode = false response.reQueueAfter = true; response.processFile = true response.infoLog += "File is being transcoded using custom arguments \n" return response }else{ response.processFile = false; response.infoLog += "File is being transcoded using custom arguments \n" return response } }
  4. I have done it for using handbreak option, but how can I make it use my GPU, I don't see any options to enable that. I have also looked at the other plugins that I was using to look at combining them and they made me really lost.
  5. Actually if someone who knows how to create a plugin can help me. this is what I am after: Reorder streams to, video, then audio, then subtitles ENG audio only (all tracks except commentary if possible) ENG subtitles only (with forced on foreign audio) Clear out all meta data of video title and such so that plex will read the file name and not bad meta data. if larger than 1080p convert to 1080p and in H265, if 1080p or less then convert to h265
  6. I take it that is a limit with your program? As everything else has no issue having PGS in the MKV. Even tdarr handles PGS in the MKV. If you can get GPU and PGS working I would perfer yours for ease of use.
  7. So I just download this and testing it out. I have 5 plugin transcode options and I notice when transcoding they are being done one by one, first the priority 1 transcodes, and copies over, then priority 2 and again copies over, then #3 and so on, So because I have 5 plugins it transcodes it 5 times? If that is the way is to work, is there any way to combine them into on? Maybe someone can help me out and create one that has them combined into the least amount as possible. Here are the ones I have and the order they are in. Tdarr_Plugin_MC93_Migz3CleanAudio Migz-Clean audio streams ----- This plugin keeps only specified language audio tracks & can tags those that have an unknown language. Tdarr_Plugin_MC93_Migz4CleanSubs Migz-Clean subtitle streams ----- This plugin keeps only specified language subtitle tracks & can tag those that have an unknown language. Tdarr_Plugin_MC93_Migz2CleanTitle Migz-Clean title metadata ----- This plugin removes title metadata from video/audio/subtitles, if it exists. Video checking is mandatory, audio and subtitles are optional. Tdarr_Plugin_MC93_Migz6OrderStreams Migz-Order Streams ----- Orders streams into Video first, then Audio (2ch, 6ch, 8ch) and finally Subtitles. Tdarr_Plugin_MC93_Migz1FFMPEG Migz-Transcode Using Nvidia GPU & FFMPEG ----- Files not in H265 will be transcoded into H265 using Nvidia GPU with ffmpeg, settings are dependant on file bitrate, working by the logic that H265 can support the same ammount of data at half the bitrate of H264. NVDEC & NVENC compatible GPU required.
  8. I too have the GPU enabled, but it never uses the GPU, only CPU. I have dbl checked the settings several times, yet same issue.
  9. Ok it does have to do with subtitles. If i tell it to not use subtitles then it works, but if I say to use subtitles, then it fails.
  10. Just downloaded the docker. And have some thoughts on it. 1) Resolution option, I get 4k stuff at times, but I don't need in 4k, just 1080. would be nice if we could tell it to go from 4k to 1080. 2) Option to clear the Completed tasks list, and or clear each list (Success, Failed) separately. 3) Force Scan - Great for testing files. And I am trying to convert one file and failed. Subtitle issue? FFMPEG Command Log Input #0, matroska,webm, from '/library/movies/A/Airheads (1994)/Airheads (1994).mkv': Metadata: creation_time : 2019-07-19T02:07:02.000000Z encoder : libebml v1.3.4 + libmatroska v1.4.5 TITLE : Airheads Duration: 01:32:15.57, start: 0.000000, bitrate: 1828 kb/s Chapter #0:0: start 0.000000, end 291.666000 Metadata: title : (01)00:00:00:000 Chapter #0:1: start 291.666000, end 632.832000 Metadata: title : (02)00:04:51:666 Chapter #0:2: start 632.832000, end 797.832000 Metadata: title : (03)00:10:32:832 Chapter #0:3: start 797.832000, end 1034.698000 Metadata: title : (04)00:13:17:832 Chapter #0:4: start 1034.698000, end 1469.364000 Metadata: title : (05)00:17:14:698 Chapter #0:5: start 1469.364000, end 1756.497000 Metadata: title : (06)00:24:29:364 Chapter #0:6: start 1756.497000, end 2042.830000 Metadata: title : (07)00:29:16:497 Chapter #0:7: start 2042.830000, end 2328.663000 Metadata: title : (08)00:34:02:830 Chapter #0:8: start 2328.663000, end 2621.363000 Metadata: title : (09)00:38:48:663 Chapter #0:9: start 2621.363000, end 2955.496000 Metadata: title : (10)00:43:41:363 Chapter #0:10: start 2955.496000, end 3356.696000 Metadata: title : (11)00:49:15:496 Chapter #0:11: start 3356.696000, end 3557.029000 Metadata: title : (12)00:55:56:696 Chapter #0:12: start 3557.029000, end 3778.562000 Metadata: title : (13)00:59:17:029 Chapter #0:13: start 3778.562000, end 4055.362000 Metadata: title : (14)01:02:58:562 Chapter #0:14: start 4055.362000, end 4520.895000 Metadata: title : (15)01:07:35:362 Chapter #0:15: start 4520.895000, end 4940.728000 Metadata: title : (16)01:15:20:895 Chapter #0:16: start 4940.728000, end 5234.861000 Metadata: title : (17)01:22:20:728 Chapter #0:17: start 5234.861000, end 5327.527000 Metadata: title : (18)01:27:14:861 Chapter #0:18: start 5327.527000, end 5527.493000 Metadata: title : (19)01:28:47:527 Chapter #0:19: start 5527.493000, end 5535.572000 Metadata: title : (20)01:32:07:493 Stream #0:0: Video: h264, yuv420p(tv, bt709, progressive), 720x400 [SAR 1:1 DAR 9:5], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default) Metadata: BPS : 1186290 BPS-eng : 1186290 DURATION : 01:32:15.572000000 DURATION-eng : 01:32:15.572000000 NUMBER_OF_BYTES : 820849345 NUMBER_OF_BYTES-eng: 820849345 NUMBER_OF_FRAMES: 132721 NUMBER_OF_FRAMES-eng: 132721 _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_WRITING_APP: DVDFab 11.0.3.1 _STATISTICS_WRITING_APP-eng: DVDFab 11.0.3.1 _STATISTICS_WRITING_DATE_UTC: 2019-07-19 02:07:02 _STATISTICS_WRITING_DATE_UTC-eng: 2019-07-19 02:07:02 Stream #0:1(en): Audio: ac3, 48000 Hz, 4.0, fltp, 448 kb/s (default) Metadata: BPS : 448000 BPS-eng : 448000 DURATION : 01:32:12.896000000 DURATION-eng : 01:32:12.896000000 NUMBER_OF_BYTES : 309842176 NUMBER_OF_BYTES-eng: 309842176 NUMBER_OF_FRAMES: 172903 NUMBER_OF_FRAMES-eng: 172903 _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_WRITING_APP: DVDFab 11.0.3.1 _STATISTICS_WRITING_APP-eng: DVDFab 11.0.3.1 _STATISTICS_WRITING_DATE_UTC: 2019-07-19 02:07:02 _STATISTICS_WRITING_DATE_UTC-eng: 2019-07-19 02:07:02 Stream #0:2(en): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s Metadata: BPS : 192000 BPS-eng : 192000 DURATION : 01:32:15.520000000 DURATION-eng : 01:32:15.520000000 NUMBER_OF_BYTES : 132852480 NUMBER_OF_BYTES-eng: 132852480 NUMBER_OF_FRAMES: 172985 NUMBER_OF_FRAMES-eng: 172985 _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_WRITING_APP: DVDFab 11.0.3.1 _STATISTICS_WRITING_APP-eng: DVDFab 11.0.3.1 _STATISTICS_WRITING_DATE_UTC: 2019-07-19 02:07:02 _STATISTICS_WRITING_DATE_UTC-eng: 2019-07-19 02:07:02 Stream #0:3(en): Subtitle: dvd_subtitle, 720x400 Metadata: BPS : 0 BPS-eng : 0 DURATION : 00:00:00.000000000 DURATION-eng : 00:00:00.000000000 NUMBER_OF_BYTES : 0 NUMBER_OF_BYTES-eng: 0 NUMBER_OF_FRAMES: 0 NUMBER_OF_FRAMES-eng: 0 _STATISTICS_TAGS: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_TAGS-eng: BPS DURATION NUMBER_OF_FRAMES NUMBER_OF_BYTES _STATISTICS_WRITING_APP: DVDFab 11.0.3.1 _STATISTICS_WRITING_APP-eng: DVDFab 11.0.3.1 _STATISTICS_WRITING_DATE_UTC: 2019-07-19 02:07:02 _STATISTICS_WRITING_DATE_UTC-eng: 2019-07-19 02:07:02 Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> hevc (libx265)) Stream #0:1 -> #0:1 (ac3 (native) -> aac (native)) Stream #0:1 -> #0:2 (ac3 (native) -> aac (native)) Stream #0:2 -> #0:3 (ac3 (native) -> aac (native)) Stream #0:3 -> #0:4 (dvd_subtitle (dvdsub) -> subrip (srt)) Subtitle encoding currently only possible from text to text or bitmap to bitmap
  11. That worked, took only like 12 hours. Way faster. just redid my drive assignments and I am back up and running.
  12. I have followed the directions on the wiki, and I am using "The "Clear Drive Then Remove Drive" Method" and when I read it takes a long time, I am not sure what they mean long time. More like forever. Its a 4TB drive, and its been running for 2 days so far and it says its done 81GB so far. and its running at 427kB/s at this rate a 4TB drive will take over 2 months via this method. This cant be right can it? There has to be a faster way to do this. I have DBL and triple checked the wiki and have it set correctly.
  13. So, I just had a drive fail on me, it says "Device is Disabled, Contents Emulated" What is the best method to remove the drive and not loose anything? I have 2 Parity Drives. I prefer to remove and not replace at this time as I dont have the money to get a new drive. I have read to use Krusader and move data from bad drive to new drive directly (Not via shares) and once emptied then I can remove it. Would this be the best way?
  14. Sorry not sure where to get that. where can I find it? I updated this morning and tried to do a spin down yet the prives are all still spinning, and CPU usage still seems high. Update: Nevermind, it just took a bit to catch up to me, cpu is nower now and drives spin down. Thanks for your help!
  15. Sorry I meant to say using Unraid Nvidia Version and they have not yet released 6.8.1 version
  16. So should I updat to 6.8.0 or 6.8.0.rc9 Witch one is the current I know RC is a release candidate just not sure if 6.8.0 is after rc9 or before rc1. Sorry still abit green here. Update: I figured it out 6.8.0 is the lattest. (Undraid version so no 6.8.1 yet)
  17. So I am not sure how to check whats going on in unraid, but here's the issue. Unraid 6.8.0-rc1 About a week ago I started to notice more CPU usage than normal, and none of my disks spin down now, they are always spinning, I have made no changes except updating the dockers. I have tried disabling them to see if any one of them is causing the issue, but the system still does not spin down and CPU usage is around 50%. I have tried the spin down option in the array operations, but they still don't spin down. No VM are on my system just dockers all of witch are stopped yet the disks still dont spin down. CPU usage is at 25%-50% and all disks stay active. Prior cpu was 20-25% with dockers off and disks would spin down after 2 hours of no use. Its not until I disable the Docker from running (Settings/Docker/enable docker = no) that the drives spin down for a few seconds and they they just come back up. Now if I turn the Array off then CPU usage goes to 1%-2%. Thoughts?
  18. The app needs to be updated to support the change to the new tvdb format. All the other apps I use have updated except this one. I am not sure if they are supporting this app anymore. If I had any clue how to code I would look into it, but its over my head. I have sent an email to ninthwalker, just waiting to see if there is a reply, as I am unsure if there will be anymore support for this. I love the app and would be sad to see it not updated to support the changes that tvdb made. I was just thinking of a fix if they would be able to figure out to avoid this in the future. And that is to pull the info from Local Plex, (Artwork, and info), but that would require a whole rewrite of the code that pulls the data. (Here is to wishing)
  19. Just installed, generated my first report and it shows up, but all the tv shows are missing the cover artwork, its all blank, but I can put the mouse over the blanks and get the info on it. I see this in the 'Now Showing Log' (Showing errors only) E, [2019-10-25T19:09:53.747574 #15308] ERROR -- : Something failed. Most likely metadata related. If you see this error all the time, turn on debugging and open an issue on github. E, [2019-10-25T19:11:27.599671 #15308] ERROR -- : Something failed. Most likely metadata related. If you see this error all the time, turn on debugging and open an issue on github. E, [2019-10-25T19:12:23.107018 #15308] ERROR -- : Connection to thetvdb.com failed while retrieving info for Highway Cops E, [2019-10-25T19:12:28.203662 #15308] ERROR -- : Connection to thetvdb.com failed while retrieving info for Into the Dark , [2019-10-25T19:14:52.965544 #15308] ERROR -- : Something failed. Most likely metadata related. If you see this error all the time, turn on debugging and open an issue on github. E, [2019-10-25T19:15:38.678000 #15308] ERROR -- : Connection to thetvdb.com failed while retrieving info for The Purge E, [2019-10-25T19:16:16.240881 #15308] ERROR -- : Could not connect to thetvdb.com. Will retry in 30 seconds E, [2019-10-25T19:16:46.311093 #15308] ERROR -- : Could not connect to thetvdb.com. Will retry in 30 seconds E, [2019-10-25T19:17:16.377481 #15308] ERROR -- : Could not connect to thetvdb.com. Will retry in 30 seconds E, [2019-10-25T19:17:46.437298 #15308] ERROR -- : Could not connect to thetvdb. Exiting script. If you are constantly seeing this, please turn on debugging and open an issue. E, [2019-10-25T19:17:46.437695 #15308] ERROR -- : Something failed. Most likely metadata related. If you see this error all the time, turn on debugging and open an issue on github. And how can I turn on debug mode? I don't see the option.
  20. I knew there would not be noticeable performance if any, but I guess they have changed the warranty as my original evo's only came with a 3 year and the pro's were 5 year, so I got pros. (Or a typo on the site) but they were for my gaming pc at the time so it was worth it. (old gaming pc is now my unraid) good to know. thanks for giving feedback on it.
  21. LOL yep that was it, that's what I get for copying and pasting from the nextcloud site, they have it with a $ bold note section, but without it in the file section. Thanks! Also it seem to run twice as fast not with the changes. not instead of 10-20 seconds delay when switching screens it like only 5 or less.
  22. Ok so iI have been trying to apply the fix for the Urgent Security issue. I got this added and able to load the docker. location / { rewrite ^ /index.php; } But if I add this (The docker will no longer load, Had to comment it out to get it to load again) location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|ocs-provider\/.+|ocm-provider\/.+)\.php(?:$|\/) { fastcgi_split_path_info ^(.+?\.php)(\/.*|)$; #$try_files $fastcgi_script_name =404; include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param HTTPS on; fastcgi_param modHeadersAvailable true; fastcgi_param front_controller_active true; fastcgi_pass php-handler; fastcgi_intercept_errors on; fastcgi_request_buffering off; } Anyone else have this issue?
  23. Ok so for the SSD i would not go with the evo, go with the pro version. - longer life span, and warranty (And faster speeds) as for the drives, spend just a bit more ($116 vs $150) and get 8tb versions (https://www.amazon.com/Book-Desktop-External-Drive-WDBBGB0080HBK-NESN/dp/B01LQQHLGC) just shuck the drive from the case (Easy to do and they are reds w/ white label), and just start out with 4 drives, 1 parry drive and 3 for the aray (you would end up saving money while getting more space) Power supply, go with a bigger one, better to have extra than keep a lower powered one running maxed out alot. (say 800+ so you have room to grow) Everything else looks good.
  24. It's under the settings section. Then theming. You can change the favor icon, login logo, login text and background picture. There is also a dark mode that can be turned on also.
  25. The way mine is posted took care of the issue as soon as I restarted the docker. Now I just want to figure out why it's so dang slow.