arkestler

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by arkestler

  1. This is very helpful, thank you!
  2. I have been searching the web about custom time schedules and cannot find exactly what I am looking for. If anyone can help me here that would be much appreciated. I need my script to run every 5 minutes every Sunday from 7:30a til 12 noon. Is this possible?
  3. Thanks, that worked great! But I don't seem to be able to create a second Catalina VM. Can this only be used to create a single instance of each OS or do I have to do something special to have multiple Catalina VMs?
  4. So if I create a Big Sur VM when I first install this docker, how can I create a second VM with Catalina?
  5. @gridrunner Would the target be able to span multiple unraid disks or is it limited to the size of a single disk?
  6. Just updated my server and I am getting the following error, also getting it for Preclear Disks. Unraid 6.3.5 Unassigned Devices 2017.10.07 Preclear Disks 2017.09.27 Oct 20 21:22:08 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:09 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:10 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:11 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:12 Kes-Vault root: error: plugins/preclear.disk/Preclear.php: wrong csrf_token Oct 20 21:22:12 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:13 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:14 Kes-Vault root: error: plugins/preclear.disk/Preclear.php: wrong csrf_token Oct 20 21:22:14 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:16 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:17 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:17 Kes-Vault root: error: plugins/preclear.disk/Preclear.php: wrong csrf_token Oct 20 21:22:18 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:19 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:20 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:21 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:22 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Oct 20 21:22:22 Kes-Vault root: error: plugins/preclear.disk/Preclear.php: wrong csrf_token Oct 20 21:22:23 Kes-Vault root: error: plugins/unassigned.devices/UnassignedDevices.php: wrong csrf_token Thanks in advance
  7. Thanks! I will see if I can get it working!
  8. The script that runs would be created by the user and can just be dropped into a volume mapping. The user would create their own script and most likely just need to path to to the ffmpeg program. In plex you just add the path to the script to run. Below is the screenshot, and an example of what I am currently using as my script on a full blown machine, which does some other stuff too, but I would be happy to just get the conversion working in the docker. #!/bin/bash # ------------------------------------------------------------------ # Author [Kevin Fowlks] # # Date 10/06/2016 # # Plex DVR Handbrake convert script for shrinking my recordings from my HDHomeRun CableCard. # # Usage: ./convert.sh <input file> sleep $[ ( $RANDOM % 45 ) + 1 ]s NOW=$(date +"%m%d%Y") #PGMNAME=/usr/bin/HandBrakeCLI PGMNAME=/usr/bin/ffmpeg check_errs() { # Function. Parameter 1 is the return code # Para. 2 is text to display on failure. if [ "${1}" -ne "0" ]; then echo "ERROR # ${1} : ${2}" # as a bonus, make our script exit with the right error code. exit ${1} fi } BASEPATH=$(dirname "$1") BASEFILE=$(basename "$1") FILENAME="${BASEFILE%%.*}" #Check to see if postprocess script is running. If so tell process to wait. This is to ensure we don't have more than 1 convert process running at a time. Keeps CPU happy. while [ -f /tmp/postProcessLock ] do sleep 60 done touch /tmp/postProcessLock echo "Starting $NOW" echo "Starting Processing of $1" | mail -s "Plex Post Processing Started" [email protected] #set audio to English /usr/bin/mkvpropedit "$1" --edit track:a1 --set language=eng --edit track:v1 --set language=eng sleep 5 #remove commercials comchap "$1" #comcut "$1" sleep 30 #Original Handbrake #$PGMNAME -i "$1" -Z "AppleTV 2" -o "$BASEPATH/$FILENAME.mp4" #ffmpeg $PGMNAME -i "$1" -vf scale=-1:720 -c:v libx264 -crf 18 -preset fast -c:a copy "$BASEPATH/$FILENAME.mp4" #$PGMNAME -i "$1" -c:v libx264 "$BASEPATH/$FILENAME.mp4" #new Handbrake #$PGMNAME -i "$1" -f mp4 --aencoder copy -e x264 --x264-preset medium --x264-profile auto -q 16 --width 1280 --height 720 --decomb bob -o "$BASEPATH/$FILENAME.mp4" check_errs $? "Failed to convert file $1" sleep 20 echo "Removing original file." rm -f "$1" sleep 10 rm /tmp/postProcessLock sleep 10 echo "Completed Processing of $1" | mail -s "Plex Post Processing Completed" [email protected] check_errs $? "Failed to remove original file $1"
  9. Is there any way to add handbrake or ffmpeg into this docker to do some file conversions in the DVR post processing script feature of plexpass version?
  10. Is there a way to have the file deleted from the watch folder after completion of the conversion into the output folder?
  11. Did you ever get this figured out?
  12. Has anyone made any progress on a plug-in for this service?
  13. OK, I have swapped the internal connections so to have the parity drive and the ones that will be replaced all on the SATA card and not connected to the motherboard directly. I am currently resyncing parity, so at least it found the drive now. We'll see how it goes after sync is done... in 2547 minutes!
  14. Yes, I have precleared them on another machine setup just for that purpose. I have checked all the cables and connections. I am leaning towards the mother board right now as both the parity drive and the second drive which I attempted to add were both using sata on the mother board while the first data drive I replaced was on a SATA card. What are your thoughts on that theory??
  15. Hello, I am running Unraid 5.0. I was in the process of upgrading my drives to 4TB drive. I replace the parity drive and then checked parity. No problem. I swapped another drive 2TB to 4TB, it rebuilt, still no problem. I then went to change another drive. When I spun up the machine, the parity drive was missing. It was not even on the list to be assigned. So I precleared another new 4TB drive, added it as parity and then let it resync parity. I gave the machine a reboot after it finished and it came up with parity unassigned. I went to the dropdown and it was listed, so I chose it as the parity drive again, as the page refreshed upon assigning the drive, it vanished completeley again. Don't really know what to do next as now I have no protection and it seems I am unable to get the parity drive to stay working. These are Segate 4TB NAS drives ST4000VN000 Any help would be great! Thanks!
  16. When I go to the Utils->New Config it says that it will make all the disks appear as new, isn't this going to wipe out all the data from the disks? I just want to clarify what is going to happen as I cannot loose this data. Thanks again.
  17. I have an array running Server Pro 5.0-beta12a with 9 Disks, No Cache Drive. I have a disk that went disabled on me and I want to yank it out and just leave that spot empty for now. What is the correct procedure to do this without data loss? Thanks!
  18. So what do you do if you already have 12TB of data and want to switch to active directory?
  19. I just upgraded my license and added three additional disks to my server. My original disks are Very full of data, what is the easiest way to spread the data out onto the new disks so as to get some breathing room back to the original disks? Some of my existing disks have only about 3% free space! Thanks!