Jump to content

jackfalveyiv

Members
  • Posts

    104
  • Joined

  • Last visited

Posts posted by jackfalveyiv

  1. Hello.  I added a single link for a Youtube clip, yet it seems as though MeTube is cycling through an unending amount of videos as if it is processing a massive playlist.  I can't get it to stop, and I can't find a config director where I could wipe out some data to stop MeTube from continuing to grab videos.  I have removed the docker from my Unraid setup, re-installed it, and found that despite this the MeTube instance just picks up right where it left off.  Is there a good way to reset this?

  2. Results of unraid-api report -v:

     

    <-----UNRAID-API-REPORT----->
    SERVER_NAME: TresCommas
    ENVIRONMENT: production
    UNRAID_VERSION: 6.11.1
    UNRAID_API_VERSION: 2.54.0
    UNRAID_API_STATUS: running
    API_KEY: valid
    MY_SERVERS: authenticated
    MY_SERVERS_USERNAME: jackfalveyiv
    CLOUD: 
            STATUS: [ok] 
            IP: [x.x.x.x] 
    RELAY: 
            STATUS: [connected]  
    MINI-GRAPH: 
            STATUS: [connected]
    SERVERS:
            ONLINE: TresCommas[owner="jackfalveyiv"]
            OFFLINE: 
    ALLOWED_ORIGINS: http://localhost, http://IPV4ADDRESS, https://IPV4ADDRESS, http://trescommas, https://trescommas, http://trescommas.local, https://trescommas.local, https://IPV4ADDRESS.HASH.myunraid.net
    NCHAN_MODE: nchan
    </----UNRAID-API-REPORT----->

     

    I should note, I can't access the console via http://trescommas, https://trescommas, http://trescommas.local, https://trescommas.local, or the new url https://ipv4address.hash.myunraid.net in ALLOWED_ORIGINS, but my old link using https://hash.unraid.net is working fine, just alerting me to an unexpected character in the  My Servers dropdown.

    Screen Shot 2022-12-12 at 9.33.00 AM.png

  3. It looks like after clicking Upgrade Cert that my machine can connect to the console via the new URL, but it does not display all information.  I can access the shares, users, settings, plugins and dockers, but many other menus are not accessible.  Furthermore, the Dashboard loads but returns no information, and when I click on Main I get a constant loading screen.  I can access the console via a local unsecure link.  All I did was click Upgrade Cert as per the blog post.  Am I missing a step somewhere?

  4. Not sure if this is the right place to ask for help, but I have a weird issue.  I have two Radarr instances in my setup, one standard and one 4k.  Today, my 4k instance is authenticating, but the page never loads fully and doesn't get me into the console, while my standard docker is accessible via the proxy link.  I can access the docker locally and authenticate, and get at what I need, but it does not work correctly when proxied.  I've attached the most relevant screenshots I can think of.  Thanks in advance for any guidance.

    Screen Shot 2022-08-02 at 1.22.09 PM.png

     

    Screen Shot 2022-08-02 at 1.22.17 PM.png

     

    Screen Shot 2022-08-02 at 1.22.23 PM.png

     

    Screen Shot 2022-08-02 at 1.22.34 PM.png

     

    Screen Shot 2022-08-02 at 1.22.42 PM.png

     

    Screen Shot 2022-08-02 at 1.22.50 PM.png

     

    ***UPDATE***

     

    This issue has resolved itself, apparently.  No action needed, 4K instance is coming up as expected.

  5. I would like to set up a cron job to delete all files and folders/directories older than 24 hours in my downloads directory.  I have made a few attempts to do this but cron is proving to be a bit tougher to understand than I previously expected.  I've tried a few versions of the following commands:


     

    find /mnt/user/path/path/* -type d -mtime +0 -print0 -exec rm {} +
    
    find /mnt/user/path/path/* -type f -mtime +7 -print0 | xargs -0 rm
    
    find /mnt/user/path/path/* -mtime -1 -ls -exec rm -d {} +
    
    find /mnt/user/path/path/* -mtime -1 -ls -exec rmdir -f {} +

     

    I'm finding varying degrees of success, but essentially the downloads folder is broken into a few subdirectories.  I want to clean out those subdirectories of all files and folders older than 24 hours on a weekly scheduled job.  I have not been able to get this working the way I want.  I have run a combination of these scripts with some different options enabled, but I'm looking for one script to do what I need.  Does anyone have a better example of what I'm trying to accomplish?

  6. On 8/9/2021 at 12:38 PM, WebAddict said:

    The NVENC support was what made djaydev's Handbrake docker image special... Losing that build is a huge loss....

     

    Perhaps someone else could fork his work from djaydev/handbrake on github or dockerhub and make it available.

     

    I have used Spaceinvaderone's guide to downloading new media to a watch folder, and then sonarr/radarr moves the newly transcoded media to the array. I found a 720p quality setting for TV shows, and a 1080p setting for Movies that I felt like retained the quality, saved a ton of space, but also allows most of our devices to direct play. Many remux 45 min 1080p episodes are about 4gb, but my 720p x264 version averages about 1.2gb. 

     

    I will be able to continue using djaydev's handbrake since I already had it before it went away. I feel bad for anyone else that wants to use it and can't find it.

     

    I'm definitely interested in this.  I unfortunately lost my djaydev docker a week ago, I had assumed the GPU transcoding functionality would be possible with this build.

  7. I'm having a difficult time getting Bazarr to recognize all of my Movie shares.  I've added some paths in the docker configuration since I have multiple shares where my movies live in.  I've attempted to use Path Mapping to map the path of a share in Radarr with the one created for Sonarr, but it seems that the subtitles are not being pulled because I'm getting errors such as this:

    Traceback (most recent call last):
    
      File "/app/bazarr/bin/bazarr/get_subtitle.py", line 70, in get_video
    
        video = parse_video(path, hints=hints, providers=providers, dry_run=used_scene_name,
    
      File "/app/bazarr/bin/bazarr/../libs/subzero/video.py", line 61, in parse_video
    
        return scan_video(fn, hints=hints, dont_use_actual_file=dry_run, providers=providers,
    
      File "/app/bazarr/bin/bazarr/../libs/subliminal_patch/core.py", line 501, in scan_video
    
        raise ValueError(\'Path does not exist\')
    
    ValueError: Path does not exist

     

    Is using individual Path Mappings the way to ensure all my movie shares are going to be found in Bazarr, or is there another way to do this?

  8. After some investigation I have determined that my Plex DB is corrupt.  Following Spaceinvader One's tutorial got me to "Error: database disk image is malformed" when running PRAGMA integrity_check.  So, I followed his tutorial and tried a dump/read of the database.  When the new db is being created, it seems to fill with data almost all the way, then stop and show as an empty db.  I was able to verify this happens every time I attempt to create a new DB from the old DB's data via Krusader.  So, I decided to take a copy of the DB to my Mac and use SQLite browser to try an export/import.  When I do, the export is successful, but at import I get an error "Error importing data: Error in statement #139: no such module: spellfix1. Aborting execution and rolling back."

     

    I have no recourse to fix this issue, but I need someone who knows a bit more about SQL to help me find a way to get this DB back in shape.  I'm convinced that the db corruption is the root of all my issues, but I can't figure out why it's so difficult to get this back in some sort of working order.

    Screen Shot 2021-11-11 at 2.02.17 PM.png

    Screen Shot 2021-11-11 at 2.06.20 PM.png

  9. My issue hasn't gone away, but my troubleshooting has led me to trying to do an integrity check on my Plex DB to see if there's an error.  When attempting to do the check, I'm getting an "unable to open database file" error.  I'm running the PRAGMA integrity_check from inside the Unraid console (actually following Spaceinvaderone's tutorial) and hitting this wall.  I'm logged in as root and I believe the permissions are set correctly for this directory and this DB, yet still nothing actionable.  Has anyone else run into this?

     

     

    Screen Shot 2021-11-02 at 11.09.33 PM.png

  10. Managed to fight my way through the previous error, but came across a new one.  I had been transcoding successfully for the past week, but my Node stopped a few hours ago and I'm receiving the below errors in the log.  Both docker containers for Server and Node are running and I haven't made any configuration changes to either one, unsure what has caused this new problem.

    Screen Shot 2021-10-23 at 4.57.06 PM.png

     

    Also, I can confirm Health Checks are running without an issue, and I am using the GPU for both tasks.

  11. I've been experiencing a problem with file playback.  It seems that random movie and TV episodes are failing to play.  I have a pre-roll that runs in front of any movie that starts, which pretty reliably loads, but both locally and remotely there seems to be a random assortment of videos that won't play.  I have even re-ripped a few DVDs and blurays to try h265, x265, mp4, mkv and at different bitrates, and yet I can't find what is causing the issue.  I'm receiving a ton of errors in the Plex docker logs stating the following:

     

    [mp3 @ 0x152397af5240] Header missing
    Error while decoding stream #0:0: Invalid data found when processing input

     

    I've been hunting for answers across some of the Reddit Plex subs as well as here to no avail.  If can provide me with some additional things to troubleshoot I'd greatly appreciate it.

    Screen Shot 2021-10-21 at 8.36.08 PM.png

×
×
  • Create New...