Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Zeze21

Members
  • Joined

  • Last visited

Everything posted by Zeze21

  1. Ok... I am not sure I can follow you. I mean I never said, that audio is ripped by Makemkv. I have in the ripper folder created the abcde.conf # -----------------$HOME/.abcde.conf----------------- # # # A sample configuration file to convert music cds to # MP3 format using lame, eyeD3 and abcde version 2.9.3 # # https://andrews-corner.org/abcde/index.html # -------------------------------------------------- # # Encode tracks immediately after reading. Saves disk space, gives # better reading of 'scratchy' disks and better troubleshooting of # encoding process but slows the operation of abcde quite a bit: LOWDISK=y # Specify the method to use to retrieve the track information, # the alternative is to specify 'musicbrainz': CDDBMETHOD=cddb # With the demise of freedb (thanks for the years of service!) # we move to an alternative: CDDBURL="http://gnudb.gnudb.org/~cddb/cddb.cgi" # Make a local cache of cddb entries and then volunteer to use # these entries when and if they match the cd: CDDBCOPYLOCAL="y" CDDBLOCALDIR="$HOME/.cddb" CDDBLOCALRECURSIVE="y" CDDBUSELOCAL="y" # Specify the encoder to use for MP3. In this case 'lame': MP3ENCODERSYNTAX=lame FLACENCODERSYNTAX=flac # Specify encoder for FLAC # Specify the path to the selected encoder. In most cases the encoder # should be in your $PATH as I illustrate below, otherwise you will # need to specify the full path. For example: /usr/bin/lame LAME=/usr/bin/lame FLAC=/usr/bin/flac # Path to FLAC encoder # Specify your required encoding options here. Multiple options can # be selected as '--preset standard --another-option' etc. # The '-V 2' option gives VBR encoding between 170-210 kbits/s. LAMEOPTS='-V 1' FLACOPTS='-s -e -V -8' # Options for FLAC # Output type for MP3. OUTPUTTYPE="mp3,flac" # The cd ripping program to use. There are a few choices here: cdda2wav, # dagrab, cddafs (Mac OS X only) and flac. New to abcde 2.7 is 'libcdio'. CDROMREADERSYNTAX=cdparanoia # Give the location of the ripping program and pass any extra options, # if using libcdio set 'CD_PARANOIA=cd-paranoia'. CDPARANOIA=cdparanoia CDPARANOIAOPTS="--never-skip=40" # Give the location of the CD identification program: CDDISCID=cd-discid # Give the base location here for the encoded music files. OUTPUTDIR=/out/CD # The default actions that abcde will take. ACTIONS=cddb,playlist,read,encode,tag,move,clean # Decide here how you want the tracks labelled for a standard 'single-artist', # multi-track encode and also for a multi-track, 'various-artist' encode: OUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}' VAOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${TRACKNUM}.${ARTISTFILE}-${TRACKFILE}' # Decide here how you want the tracks labelled for a standard 'single-artist', # single-track encode and also for a single-track 'various-artist' encode. # (Create a single-track encode with 'abcde -1' from the commandline.) ONETRACKOUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}' VAONETRACKOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${ALBUMFILE}' # Create playlists for single and various-artist encodes. I would suggest # commenting these out for single-track encoding. PLAYLISTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${ALBUMFILE}.m3u' VAPLAYLISTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${ALBUMFILE}.m3u' # This function takes out dots preceding the album name, and removes a grab # bag of illegal characters. It allows spaces, if you do not wish spaces add # in -e 's/ /_/g' after the first sed command. mungefilename () { echo "$@" | sed -e 's/^\.*//' | tr -d ":><|*/\"'?[:cntrl:]" } # What extra options? MAXPROCS=2 # Run a few encoders simultaneously PADTRACKS=y # Makes tracks 01 02 not 1 2 EXTRAVERBOSE=2 # Useful for debugging COMMENT='abcde version 2.9.3' # Place a comment... EJECTCD=y # Please eject cd when finished :-) INTERACTIVE=n Am I missing something entirely?
  2. wow, completely missed that one myself... Thank you that was my mistake!
  3. sorry if this question has already been asked but i couldn't find it. I am trying to get my home assistant setting to work - Home Assistant runs as vm with set ip 192.168.188.35 and is completely reachable from lan I set up my homeassistant.subdomain.conf ## Version 2021/07/13 # make sure that your dns has a cname set for homeassistant and that your homeassistant container is not using a base url # As of homeassistant 2021.7.0, it is now required to define the network range your proxy resides in, this is done in Homeassitants configuration.yaml # https://www.home-assistant.io/integrations/http/#trusted_proxies # Example below uses the default dockernetwork ranges, you may need to update this if you dont use defaults. # # http: # use_x_forwarded_for: true # trusted_proxies: # - 172.16.0.0/12 server { listen 443 ssl; listen [::]:443 ssl; server_name homeassistanturl.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; # enable for Authelia #include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app 192.168.188.35;; set $upstream_port 8123; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } location /api { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app 192.168.188.35;; set $upstream_port 8123; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } location /local { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app 192.168.188.35;; set $upstream_port 8123; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } } and in Home Assistant the configuration.yaml: http: use_x_forwarded_for: true trusted_proxies: - 192.168.188.10 - 172.18.0.4 where 192.168.188.10 is the ip of my unraid server hence the ip of the docker image within and 172.18.0.4 the ip od swag in docker Settings in Docker: 172.18.0.4:443/TCP192.168.188.10:1443 172.18.0.4:80/TCP192.168.188.10:180 But when i try to access home assistant from the web I get "ERR_CONNECTION_REFUSED" what am i doing wrong? Thank you all in advance
  4. Hi, I am fairly new to all of this so please bare with me I am trying to rip a CD (and i have tried different ones...) and after some errors on the file structure (wrong directory) - i finally got ripper to do the following: *** Running /etc/my_init.d/ripper.sh... Using this daily? Please sponsor me at https://github.com/sponsors/rix1337 - any amount counts! 27.07.2021 19:47:39 : Starting Ripper. Optical Discs will be detected and ripped within 60 seconds. 27.07.2021 19:47:39 : Disk tray open 27.07.2021 19:48:51 : CD detected: Saving MP3 and FLAC 27.07.2021 19:48:51 : CD detected: Saving MP3 and FLAC 27.07.2021 19:48:51 : Done! Ejecting Disk 27.07.2021 19:49:53 : Disk tray open But when i access the folder in which it should be saved...there is nothing there...what am i doing wrong?

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.