Search found 8829 matches

by sander
February 16th, 2015, 2:23 am
Forum: Français
Topic: Une fois terminer ETEINDRE PC / SHUTDOWN COMPUTER: KO
Replies: 3
Views: 3910

Re: Une fois terminer ETEINDRE PC / SHUTDOWN COMPUTER: KO

If it works OK for you, that's enough.
by sander
February 15th, 2015, 5:45 am
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

The problem is seen here in the log you posted: Stream #0.1(ger): Audio: ac3, 48000 Hz, stereo, s16, 192 kb/s (default) Language found in stream Audio That should be a number. The ffmpeg output line that works in my code: Stream #0:1(ger): Audio: ac3, 48000 Hz, stereo, fltp, 224 kb/s (default) Your ...
by sander
February 15th, 2015, 4:23 am
Forum: Français
Topic: Une fois terminer ETEINDRE PC / SHUTDOWN COMPUTER: KO
Replies: 3
Views: 3910

Re: Une fois terminer ETEINDRE PC / SHUTDOWN COMPUTER: KO

Bonjour! What does your sabnzbd.log say? Check for 'Received a DBus exception' and/or 'DBus does not support Stop (shutdown)'. And try this from a terminal: dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.M...
by sander
February 14th, 2015, 8:49 pm
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

I discovered and fixed a bug. Please update.
by sander
February 14th, 2015, 1:19 pm
Forum: Post-Processing Scripts
Topic: [LINUX]Running multiple PP scripts
Replies: 2
Views: 2421

Re: [LINUX]Running multiple PP scripts

It doesn't work ... but what does work? I hate shell scripting, but here is a untested try: #!/bin/sh echo "Step 1" /<fullpath-to-SAB-scripting-dir>/SAB-SafeRename.py $1 $2 $3 $4 $5 $5 $6 $7 $8 echo "Step 2" /<fullpath-to-SAB-scripting-dir>/mkv-process-audio-and-subs.py $1 $2 $3 ...
by sander
February 14th, 2015, 1:09 pm
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

OK, deleting added. See same link (thus: https://raw.githubusercontent.com/sande ... nd-subs.py)
by sander
February 14th, 2015, 12:47 pm
Forum: General Help
Topic: SABMobile Help
Replies: 4
Views: 1552

Re: SABMobile Help

You could try UPnP.

In http://miniupnp.free.fr/files/ go to "Latest files", and download the mini-upnp client for your platform (Linux, OSX, or Windows). If you the upnpc exectable, run this in a terminal/command box:

Code: Select all

upnpc -l
Post the output here.
by sander
February 14th, 2015, 11:38 am
Forum: General Help
Topic: SABMobile Help
Replies: 4
Views: 1552

Re: SABMobile Help

You have to setup port forwarding. See http://wiki.sabnzbd.org/faq#toc36
by sander
February 14th, 2015, 11:25 am
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

synci wrote:Wow thanks a lot !!!
I´ll try it now and maybe i can add the nfo feature, a quest for me but funny :)
Let me know the result.

Can you give more info about the .nfo file? What does it contain? Is there always just one .nfo, in the same directory as the .mkv?
by sander
February 14th, 2015, 8:06 am
Forum: General Help
Topic: Fedora 21 Server :Only access from localhost [selinux]
Replies: 4
Views: 1228

Re: Fed 21 Server :Only access from localhost

So you turned completely off selinux? Maybe this helps to allow SABnzbd to listen (in this case port 12345), quote from https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Managing_Confined_Services/chap-Managing_Confined_Services-The_Apache_HTTP_Server.html An SELinux deni...
by sander
February 14th, 2015, 3:56 am
Forum: General Help
Topic: Fedora 21 Server :Only access from localhost [selinux]
Replies: 4
Views: 1228

Re: Only access from localhost

which URL did you check from another device on your LAN?
by sander
February 13th, 2015, 8:02 pm
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

OK, prototype is working. See logging below. I'll post the code tomorrow. Language ger to be kept Searching: /home/sander/Downloads/complete/44cfdaab-aee6-180f-338a-96a15cfa84b4.1 /home/sander/Downloads/complete/44cfdaab-aee6-180f-338a-96a15cfa84b4.1/blabla Zero 11 [Ger-Jap-Dub][Ger-Eng-Sub][AC3 2.0...
by sander
February 12th, 2015, 6:09 pm
Forum: Post-Processing Scripts
Topic: [LINUX] Remove unwanted audio+subs
Replies: 28
Views: 23893

Re: [LINUX] Remove unwanted audio+subs

You have done it manually? How? This is what works for me: Inspection of the Audio (and Subtitle) Streams: $ ffmpeg -i movie-Ger-Jap-Dub.mkv 2>&1 | grep -i -e Audio: -e Subtitle: Stream #0:1(ger): Audio: ac3, 48000 Hz, stereo, fltp, 224 kb/s (default) Stream #0:2(jpn): Audio: ac3, 48000 Hz, ster...