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.

How can i make this into a nzbget script?

Featured Replies

I don't need subtitles to be default ON on my tv shows as they are all in English and for some reason WEBDL all have subtitles that default to ON, i found a way to change it to off  but i want to make a post processing script out of it.

 

find . -name "*.mkv" -exec mkvpropedit {} --edit track:s1 --set flag-default=0 \;

 

how can i make something like that into  a script that will work for nzbget?

 

i think it should be mkvpropedit filename.mkv --edit track:s1 --set flag-default=0 now how do i get nzbget to do this?

 

  • Author

hugbug the guy who created nzbget made this for me :) works great save it as .sh if anyone needs something like that.

 

#!/bin/sh 

#######################################
### NZBGET POST-PROCESSING SCRIPT   ###

# Change default subtitles to 0.
#
# The script changes default subtitles to 0 on WEBDL tv shows.
#
# The long description can have multiple paragraphs when needed. Like
# this one.

### NZBGET POST-PROCESSING SCRIPT   ###
#######################################

POSTPROCESS_SUCCESS=93
POSTPROCESS_ERROR=94

echo "Processing..."

cd $NZBPP_DIRECTORY
find . -name "*.mkv" -exec mkvpropedit {} --edit track:s1 --set flag-default=0 \;

exit $POSTPROCESS_SUCCESS

Archived

This topic is now archived and is closed to further replies.

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.