Search found 10 matches

by BrooBee
November 9th, 2016, 12:48 pm
Forum: Post-Processing Scripts
Topic: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabnzbd)
Replies: 5
Views: 8965

Re: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabn

mkoppers wrote:Just installed your script.I have been looking for this for a very long time and ended up converting videos manually. If it works - and I'm sure it will - you will have saved me many hours.
Thank you
Ah great :D

Yeah, let me know how it works and let me know if there are something you wonder.
by BrooBee
October 30th, 2016, 11:11 pm
Forum: Post-Processing Scripts
Topic: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabnzbd)
Replies: 5
Views: 8965

Re: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabn

Is there anyone using this script?

Any wishes to add in the script?
by BrooBee
October 15th, 2016, 1:10 pm
Forum: Post-Processing Scripts
Topic: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabnzbd)
Replies: 5
Views: 8965

Re: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabn

This is how it looks like in Sabnzbd's Logs after my script is done: Begin SAB Post-Proccess Video - Remux AVI or MKV to MP4 Deleting Unnecessary files before converting (Samples etc, so it does not convert them too)! Looking in "F:\TORRENT\Done\Test Movie Awesomeness (2016)" for avi or mk...
by BrooBee
October 15th, 2016, 12:28 pm
Forum: Post-Processing Scripts
Topic: Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabnzbd)
Replies: 5
Views: 8965

Auto Convert TV-Shows and Movies to MP4 (Sonarr and Sabnzbd)

Hi, Here is a script that converts files to MP4, rename them (Movies through Sabnzbd's Sorting and TV-Shows through my setup in Sonarr) and move them where you want. @ECHO OFF ECHO. ECHO Begin SAB Post-Proccess Video - Remux AVI or MKV to MP4 ECHO. REM Change these variables to match your system SET...
by BrooBee
October 8th, 2016, 6:40 am
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

Re: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzb

shypike wrote:
BrooBee wrote: Maybe the sorting could come after the User Scripts?
But SABnzbd cannot know what the user script does.
It may mess up things.
Ah, yeah, not easy to know that tho :D

I found a solution to my script tho, YaY :D
by BrooBee
October 8th, 2016, 4:19 am
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

Re: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzb

The idea behind user scripting is that it does it's own "sorting". SABnzbd wouldn't be able to supply the right info always, because it sends folder names, not file names. Maybe we could do something in a later release, but that would be quite a bit of work and likely incompatible with cu...
by BrooBee
October 7th, 2016, 9:49 pm
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

Re: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzb

Hi, I found a solution with Sabnzbd's own Post-processing :D for %%i IN ("%~1\*.%OldAVI%","%~1\*.%OldMKV%") DO (%FFMPEG% -i "%%i" -c:v copy -c:a libfdk_aac "%1\%3.mp4") %1=The final directory of the job (full path) and %3=Clean version of the job name (no path...
by BrooBee
October 7th, 2016, 7:43 pm
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

Re: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzb

The only thing I can think of is to strip the last 4 characters, which is doable for normal variables, but I think might not work with %%i, or at least would get real messy real fast. Examples on how to rename variables: http://ss64.com/nt/syntax-replace.html Since you got the script from reddit or...
by BrooBee
October 6th, 2016, 4:29 am
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

Re: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzb

Hi again, Sorry for Double-post! When I download a Movie via an .nzb file, I have setup Sabnzbd Sorting for Movies and setup categories. All is well until my Script (above) is converting the movie to .mp4, it renames it like this: Sabnzbd Sorting and Category renaming: Amateur Night (2016).mkv My Sc...
by BrooBee
September 29th, 2016, 2:01 pm
Forum: General Help
Topic: AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd
Replies: 8
Views: 11084

AUTO Convert MKV, AVI etc to MP4 Using Sonarr and SabNzbd

Hi, I found this little script that I use after a TV-Show or a Movie etc is downloaded. It works in Windows and is easy to change to fit your wishes. It converts MKV or AVI to MP4, can be edited to convert more formats. I have setup Sonarr to check for TV-Shows with indexers to find them, then Sonar...