clinton-hall / nzbToMedia

Provides NZB and Torrent postprocessing To CouchPotatoServer, SickBeard/SickRage, HeadPhones, Mylar and Gamez
GNU General Public License v3.0
670 stars 176 forks source link

Transcode iso and Video_TS #545

Closed thesatman closed 9 years ago

thesatman commented 10 years ago

Sickbeard found a download. SABnzbd completed the download. The files were moved to the final folder for TV shows. All well,... except for this error:

name-tv-show S03 BDRip XviD-SAiNTS

       02:35:26|INFO    ====================

02:35:26|INFO nzbToMedia V9.2 02:35:26|INFO MAIN: Loading config from C:\Users\thesatman\nzbToMedia-win-v9.2\autoProcessMedia.cfg 02:35:26|INFO MAIN: Script triggered from SABnzbd 02:35:26|INFO MAIN: Calling Sick-Beard to post-process: name-tv-show.S03.BDRip.XviD-SAiNTS.nzb 02:35:26|INFO Loading config from C:\Users\thesatman\nzbToMedia-win-v9.2\autoProcessMedia.cfg 02:35:26|INFO FLATTEN: Flattening directory: W:\sabnzbd_complete\tv\name-tv-show S03 BDRip XviD-SAiNTS 02:35:26|INFO REMOVER: Removing empty folders in: W:\sabnzbd_complete\tv\name-tv-show S03 BDRip XviD-SAiNTS 02:35:26|INFO The download succeeded. Sending process request to SickBeard's default branch 02:35:26|INFO Waiting for 0.0 seconds to allow SB to process newly extracted files 02:40:28|ERROR Unable to open URL Traceback (most recent call last): File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\autoProcess.autoProcessTV", line 208, in processEpisode File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\autoProcess.autoProcessTV", line 33, in openit File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\urllib", line 207, in open File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\urllib", line 345, in open_http File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\httplib", line 1102, in getreply File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\httplib", line 1030, in getresponse File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\httplib", line 407, in begin File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\httplib", line 365, in _read_status File "c:\build\pyi.win32\nzbToMedia\out00-PYZ.pyz\socket", line 430, in readline IOError: [Errno socket error] timed out 02:40:28|INFO MAIN: A problem was reported in the autoProcess* script.

Any idea what is causing this?

clinton-hall commented 10 years ago

Oh F*&^

I see now... this is one of those specific issues that you just can't plan for...

The good news is this did get further... I just gets confused because it tries to link the file into its own folder (using the download name as folder name)... so when download is a single file the download name is the file name, and when the outputDir is in the same as the download dir it actually tries to link the file into a folder with its own name!

so, it tried to copy/link C:\Video\link_w_torrent_download\couchpotato_\Silent Fall (1994).avi into C:\Video\link_w_torrent_download\couchpotato_\Silent Fall (1994).avi\Silent Fall (1994).avi which of course, already exists (well.. the folder itself exists as a file!)...so it fails this but we now set the DIRECTORY = C:\Video\link_w_torrentdownload\couchpotato\Silent Fall (1994).avi which is in-fact a file and cannot be browsed!!

So.. I need to fix this... but, for now...

[Torrent]
    outputDirectory = C:\Video\link_w_torrent_download\processed
    useLink = hard

if that doesn't work, try useLink = move, or even copy

As a note.. when pasting logs, put 3 "ticks" then the log, then 3 "ticks" again... it keeps the logs formatted and much easier to read :)... the "tick" is on the same key as ~

e.g

enter your logs here

thesatman commented 10 years ago
It think it would help if you can clean up the path format :

WindowsError: [Error 2] The system cannot find the file specified: 'C:\\Video\\link_w_torrent_download\\processed\\couch

potato_\\Silent Fall (1994).avi\\Silent Fall (1994).avi'

Please note the double \\. Windows does not recognize this.
thesatman commented 10 years ago

nzbToCouchpotato.py : completed downloads do not show in SABnzbd, are however completed and moved to the mediaserver\movie folder. CP also notifies me with NotifyMyAndroid. So all OK except no log in SABnzbd.

This for your information. (not sure if you need a log or something, so just ask)

[17:49:43] [DEBUG]::MAIN: cur_commit = b61aca7e6834d13c841ad9bdd23c275c41dedd71 % (newest_commit)= b61aca7e6834d13c841ad9bdd23c275c41dedd71, num_commits_behind = 0, num_commits_ahead = 0
[17:49:43] [INFO]::MAIN: No update needed
[17:49:43] [INFO]::MAIN: nzbToMedia Version:b61aca7e6834d13c841ad9bdd23c275c41dedd71 Branch:nightly (Windows 7)
clinton-hall commented 10 years ago

ok, no log in SABnzbd. can you go to C:\nzbToMedia-GIT\logs\nzbtomedia.log open this and verify the log details for the SABnzbd download.

in general, the \\ is needed due to the way strings are handled by python. a \ is a special character (escape) that modifies the character that follows, so in order to get a \ in a path, we do need to escape it, so we need to put the escape (itself) first... so \\ is correct for a string. the issue here is what format the path is stored as... I'll check again.

clinton-hall commented 10 years ago

I am going to try and replicate your directory structure and reproduce this... if I can, then I will hopefully track this down and fix...

thesatman commented 10 years ago
For what concernes the \\ : Just thinking up loud. I've seen stranger things that in the end appeared to be a typical thing for Windows 7. Things that worked under XP stopped working under Win7, but got fixed under Win8. Hopefully this isn't one of those bugs.

 

About CP=>usenet/SABnzbd downloads not in the SABnzbd history : I checked for 3 movies that were downloaded. None of theme are listed in the history, and are not to find in the media log. But as I said, CP has send an alert to NotifyMyAndroid, and renamer has handled all items correctly.
clinton-hall commented 10 years ago

ok.. I just used the same folder structure (on Windows 7) and this works.

now, I was assuming the error was in the same place (the imdb id lookup). But I just realized, you only posted the error after you changed the outputDirectory... Can you please post the section of the log before the error?... certainly from the last COPYLINK entry, or just post the whole lot.

As I said, I don't get the error here. And yes, the \\ is being handled correctly. It usually logs as \ but when there is an error, it dumps the actual values that are in memory.

clinton-hall commented 10 years ago

I was able to reproduce a similar error when I used my directory C:\video\link_w_torrent_download but had outputDirectory set to C:\Video\link_w_torrent_download/processed

Note. the actual directory was video with a lower case v but I specified output as Video with an upper case V. This can break some external commands that are case sensitive..

so really, it depends on which specific function reported this error.

If it is not a case-sensitive issue, then I am suspecting there is a specific feature that can't correctly read the file in the mounted location etc...

I guess this all points to the same.. need full logs to further investigate.

I have updated a few things relating to the transcoder, that do impact the way the path is read... but this probably won't change your issue.

thesatman commented 10 years ago
I managed to figure this one out ! It is the way you "rewrite" the config file. The ascii is messing up the linebreaks in a invisible way. When you mentioned that you could reproduce the same issue by using a forward slash, I went looking for the same line again in the config. All looked OK, except for the fact that when I trailed the line from the first to the last character with the right arrow, I noticed that the cursor jumped / skipped one letter before the line ended, and skipped to the first letter on the next line.

    ###### outputDirectory - Default output directory (categories

    will be appended as sub directory to outputDirectory)

         outputDirectory = C:\Video\link_w_torrent_download

    \processed

 

Due to the length of the text on that line it is forced to split, and while it looks OK, something seemed fishy. So I deleted the line and rewrote it on a new line, without the "jump in" to the right, in order to have it fit on one single line. Then aRan the command line again, and TATTAAAA !!! worked like a charm.

I did the same test with another movie, same error again. Had a look at the config file, where the line was splitted again... Changed it, ran the command. All OK. Looked at the config again, rewritten so it was splitted over 2 lines again. So there is where the problem lies.

 

Some additional questions: The original flder/files in C:\Video\link_w_torrent_download\couchpotato\<movie_name> are not removed. Neighter is the actual torrent file in W:\torrent_complete. I was looking in the config but can not figure it out where to define to delete those.
 

On Friday, September 12, 2014 05:25 AM CEST, Clinton Hall <notifications@github.com> wrote:
 

I was able to reproduce a similar error when I used my directory `C:\video\link_w_torrent_download` but had outputDirectory set to `C:\Video\link_w_torrent_download/processed`
Note. the actual directory was `video` with a lower case `v` but I specified output as `Video` with an upper case `V`. This can break some external commands that are case sensitive..
so really, it depends on which specific function reported this error.
If it is not a case-sensitive issue, then I am suspecting there is a specific feature that can't correctly read the file in the mounted location etc...
I guess this all points to the same.. need full logs to further investigate.
I have updated a few things relating to the transcoder, that do impact the way the path is read... but this probably won't change your issue.
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55357585
clinton-hall commented 10 years ago

Look at

[Torrent]
    deleteOriginal = 1

Interesting observation with the line break... I can't reproduce... So one movie will work, but the second will fail without any intervention? Or did you open the config file between movies. What editor? As a rule, don't use notepad.... Try wordpad or notepad++

Did you ever open/edit/save the .cfg.spec? If so, try a

git reset --hard

Or otherwise delete and replace this file/reclone etc.... The formatting comes from the cfg.spec file.

thesatman commented 10 years ago
no, first movie fails with original conf. I rewrite the line as explained so it fits on one line, then rerun first movie, success.

run second movie with same config, unchanged after last succesfullrun. Edit conf and find that my one text line is gone, replaced by original "layout" with injump and spread over two lines. I delete the old line, rewrite the line completely on one text line. rerun movie 2, success.

 

I use wordpad on win7. It is not whatr I use as editor that is the issue. It is what you inject what is wrong. When I say inject, I mean that  just like the [movie] section automatically re-appears after deletion, the outputDirectory has the same destiny. I can format it anyway I want, after the run it is automatically rewritten by you (read: the script)
clinton-hall commented 10 years ago

I can't reproduce this. What is really strange is that the migration happens at the start of the script, so this should cause the line to be re-written right at the start and therefore the processing should never work.

further, the script should only retain the existing values, written into the default cfg.spec.

So I really think this is sounding like the autoProcessMedia.cfg.spec is corrupt?

clinton-hall commented 10 years ago

as a note... when this is resolved, I have tested extraction/transcoding of .iso and it works :)

thesatman commented 10 years ago
Not sure what did the trick, nightly update or cleaning up the conf file, but it seems to work now with basic couchpotato_ torrents. Let's see how things work out along the way :o)

 

Today my first TV Show came in this way : SB => uTorrent => torrentToMedia.py

 

The show finally ended up in the folder "processed" but there is where it stoppped. I of course didn't activated it in the conf file. So I did and ran the command line again for this show. It ends with an error.

 

My conf :

*************************************************************

[SickBeard]

    #### autoProcessing for TV Series

    #### tv - category that gets called for post-processing with SB

    [[tv]]

        enabled = 1

        host = localhost

        port = 8083

        username = ""

        password = ""

        ###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######

        web_root = ""

        ssl = 0

        fork = auto

        delete_failed = 0

        # Enable/Disable linking for Torrents

        Torrent_NoLink = 1

        process_method = ""

        # force processing of already processed content when running a manual scan.

        force = 0

        extract = 1

        nzbExtractionBy = Downloader

        # Set this to minimum required size to consider a media file valid (in MB)

        minSize = 0

        # Enable/Disable deleteing ignored files (samples and invalid media files)

        delete_ignored = 0

        ##### Enable if SickBeard is on a remote server for this category

        remote_path = 0

        ##### Set to path where download client places completed downloads locally for this category

        watch_dir = ""

    [[SickRagetv_]]

        enabled = 1

        host = localhost

        port = 8083

        username = ""

        password = ""

        Torrent_NoLink = 1

        extract = 1

        remote_path = 1

        watch_dir = C:\Video\link_w_torrent_download\SickRagetv_

****************************************************

 

The output :

 

*****************************************************

     

    C:\nzbToMedia-GIT\nzbToMedia>C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py "C:\Video\link_w_torrent_download\SickRagetv

    _" "[ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS" "SickRagetv_" "60D4BC499EDE8C16A6DAB3DCDF5BEE501F499A41

    "

    [13:31:17] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

    [13:31:17] [INFO]::MAIN: Checking database structure...

    [13:31:17] [DEBUG]::MAIN: Checking Initial Schema database upgrade

    [13:31:17] [DEBUG]::MAIN: InitialSchema upgrade not required

    [13:31:17] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

    [13:31:17] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

    T\nzbToMedia

    [13:31:18] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

    [13:31:18] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

    [13:31:18] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

    nzbToMedia-GIT\nzbToMedia

    [13:31:18] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

    [13:31:18] [INFO]::MAIN: Checking if git needs an update

    [13:31:18] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

    edia-GIT\nzbToMedia

    [13:31:18] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

    [13:31:18] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

    ia-GIT\nzbToMedia

    [13:31:26] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

    [13:31:26] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

    th your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:31:26] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

    uccessful

    [13:31:26] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

    with your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:31:26] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

     successful

    [13:31:26] [DEBUG]::MAIN: cur_commit = 27f740c10665c425c3d3dfd35fe39855d9be958c % (newest_commit)= 27f740c10665c425c3d3d

    fd35fe39855d9be958c, num_commits_behind = 0, num_commits_ahead = 0

    [13:31:26] [INFO]::MAIN: No update needed

    [13:31:26] [INFO]::MAIN: nzbToMedia Version:27f740c10665c425c3d3dfd35fe39855d9be958c Branch:nightly (Windows 7)

    [13:31:26] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

    [13:31:26] [INFO]::MAIN: #########################################################

    [13:31:26] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

    [13:31:26] [INFO]::MAIN: #########################################################

    [13:31:26] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

    \Video\\link_w_torrent_download\\SickRagetv_', '[ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS', 'SickRaget

    v_', '60D4BC499EDE8C16A6DAB3DCDF5BEE501F499A41']

    [13:31:27] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\SickRagetv_ to dat

    abase

    [13:31:27] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\SickRagetv_ | Name: [ www.torrenting.com

    ] - Outlander.S01E06.HDTV.x264-KILLERS | Category: SickRagetv_

    [13:31:27] [DEBUG]::MAIN: SEARCH: Found the Category: SickRagetv_ in directory structure

    [13:31:27] [INFO]::MAIN: SEARCH: Found torrent directory [ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS in

    input directory directory C:\Video\link_w_torrent_download\SickRagetv_

    [13:31:27] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\SickRagetv_\[ www.torrenting

    .com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:27] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\SickRagetv_\[ www.torrenting.com ] - Ou

    tlander.S01E06.HDTV.x264-KILLERS | Name: [ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS | Category: SickRag

    etv_

    [13:31:27] [INFO]::MAIN: Auto-detected SECTION:SickBeard

    [13:31:27] [DEBUG]::MAIN: Stopping torrent [ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS in utorrent while

     processing

    [13:31:32] [INFO]::MAIN: Output directory set to: C:\Video\link_w_torrent_download\processed\SickRagetv_\[ www.torrentin

    g.com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:32] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\SickRagetv_\[ www.torrenting.com

     ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:32] [DEBUG]::MAIN: Found 2 files in C:\Video\link_w_torrent_download\SickRagetv_\[ www.torrenting.com ] - Outland

    er.S01E06.HDTV.x264-KILLERS

    [13:31:33] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\link_w_torrent_download\processed\Sick

    Ragetv_\[ www.torrenting.com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:33] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\link_w_torrent_download\processed\SickRagetv_\[ www.tor

    renting.com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:33] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\link_w_torrent_download\processed\SickRagetv_\[ www.tor

    renting.com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:33] [INFO]::MAIN: Found 1 media files in C:\Video\link_w_torrent_download\processed\SickRagetv_\[ www.torrenting.

    com ] - Outlander.S01E06.HDTV.x264-KILLERS

    [13:31:33] [INFO]::MAIN: Calling SickBeard:SickRagetv_ to post-process:[ www.torrenting.com ] - Outlander.S01E06.HDTV.x2

    64-KILLERS

    Traceback (most recent call last):

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 325, in <module>

        exit(main(sys.argv))

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 262, in main

        result = processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID, clientAgent)

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 209, in processTorrent

        inputCategory)

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\autoProcess\autoProcessTV.py", line 49, in processEpisode

        if not server_responding("%s%s:%s%s" % (protocol,host,port,web_root)):

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\nzbToMediaUtil.py", line 978, in server_responding

        requests.get(baseURL, timeout=60, verify=False)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\api.py", line 55, in get

        return request('get', url, **kwargs)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\api.py", line 44, in request

        return session.request(method=method, url=url, **kwargs)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\sessions.py", line 418, in request

        prep = self.prepare_request(req)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\sessions.py", line 356, in prepare_request

        hooks=merge_hooks(request.hooks, self.hooks),

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\models.py", line 294, in prepare

        self.prepare_url(url, params)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\models.py", line 341, in prepare_url

        scheme, auth, host, port, path, query, fragment = parse_url(url)

      File "C:\nzbToMedia-GIT\nzbToMedia\libs\requests\packages\urllib3\util.py", line 397, in parse_url

        raise LocationParseError("Failed to parse: %s" % url)

    requests.packages.urllib3.exceptions.LocationParseError: Failed to parse: Failed to parse: localhost:8083{}

     

    C:\nzbToMedia-GIT\nzbToMedia>

*****************************************************

Goal is that the TV show needs to be moved to the corresponding folder on the media server, as configured in SickRage. Do I need an API key for SR ? Naything else I am missing?

PS: next stop will be ISO and VOB testing...
clinton-hall commented 10 years ago

No need for Api... Make sure you set the web_root as blank. If blank (as below) doesn't work, use ""

[SickBeard]
    [[SickRage_]]
        web_root = 
        username = 
        password =

Then try processing again.

thesatman commented 10 years ago
Looks like broke something, wonder if you can help me with this one... I installed the Pismo file. After installing I could not see it in my system path. Logged off and on, no change. So I edited my path manually. Log off/on, still nothing. Next step, I removed the entry I added in the path. log off/on. PAth set back to original as it was before :

PATH=C:\Python27\;C:\Python27\Scripts;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Git\cmd;C:\Users\Harry\AppData\Roaming\Python\Scripts

 

When I now run the line below, nothing happens.

 

    C:\Users\Harry>C:\Python27\python.exe C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py

     

    C:\Users\Harry>

     

    When running python.exe I het the python command line, so this is working. I see no changes in the log file ... Any idea what is happening?
thesatman commented 10 years ago
Hmm... suspicious .... file size zero ?

15.09.2014  15:45                 0 TorrentToMedia.pyC:\nzbToMedia-GIT\nzbToMedia>dir

 

 Volume in drive C has no label.

 Volume Serial Number is 64FC-E816

 

 Directory of C:\nzbToMedia-GIT\nzbToMedia

 

15.09.2014  14:57    <DIR>          .

15.09.2014  14:57    <DIR>          ..

03.09.2014  08:45               575 .gitattributes

03.09.2014  08:45                84 .gitignore

08.09.2014  15:04            17 249 autoProcessMedia - Copy.cfg

15.09.2014  18:18            17 492 autoProcessMedia.cfg

15.09.2014  18:18            14 379 autoProcessMedia.cfg.old

11.09.2014  07:41            15 971 autoProcessMedia.cfg.spec

03.09.2014  08:45            18 019 changelog.txt

03.09.2014  08:45             4 624 DeleteSamples.py

03.09.2014  08:45               504 getffmpeg.sh

03.09.2014  08:47    <DIR>          libs

03.09.2014  08:45            35 801 license.txt

15.09.2014  18:18    <DIR>          logs

11.09.2014  07:41             6 662 nzbToCouchPotato.py

03.09.2014  08:45             2 610 nzbToGamez.py

03.09.2014  08:45             3 022 nzbToHeadPhones.py

11.09.2014  08:02    <DIR>          nzbtomedia

15.09.2014  14:57            14 336 nzbtomedia.db

11.09.2014  08:02            25 424 nzbToMedia.py

11.09.2014  08:02             8 684 nzbToMedia.pyc

03.09.2014  08:45             2 978 nzbToMylar.py

03.09.2014  08:45             6 256 nzbToNzbDrone.py

11.09.2014  07:41             6 781 nzbToSickBeard.py

03.09.2014  08:45             4 383 README.md

03.09.2014  08:45             3 180 ResetDateTime.py

07.09.2014  18:00    <DIR>          tests

03.09.2014  11:49                 0 this_is_GIT_folder.bat

15.09.2014  15:45                 0 TorrentToMedia.py

              23 File(s)        209 014 bytes

               6 Dir(s)  10 468 298 752 bytes free
thesatman commented 10 years ago
After restoring the TorrentToMedia.py file I did a new run. The folder contains :

1 .nfo file

1 .bin file

1 .cue file

1 .mg sample file

 

***********************************************************

    C:\nzbToMedia-GIT\nzbToMedia>C:\Python27\python.exe C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py "C:\Video\link_w_torrent_download\couchpotato_" "Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)" "couchpotato_" "213FCB144D7F7E56C588584103BEE62D76015859"

***********************************************************

 

The system path:

*******************************************

    PATH=C:\Python27\;C:\Python27\Scripts;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Git\cmd;C:\Program Files\Pismo File Mount Audit Package;%APPDATA%\Python\Scripts

******************************************

 

All goes well, until it stumbles over a path that does not exists,.... but it does!

********************************************************

[19:07:27] [DEBUG]::MAIN: Found 1 files in C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) DVDRip KVCD b

y Hockney(TUS Release)

[19:07:27] [INFO]::COPYLINK: MEDIAFILE: [Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo]

[19:07:27] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) DVDRip KVCD

 by Hockney(TUS Release)]

[19:07:27] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) D

VDRip KVCD by Hockney(TUS Release)]

[19:07:27] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[19:07:27] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\link_w_torrent_download\processed\couc

hpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)

[19:07:27] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Seas

on (2005) DVDRip KVCD by Hockney(TUS Release)

Traceback (most recent call last):

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 323, in <module>

    exit(main(sys.argv))

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 262, in main

    result = processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID, clientAgent)

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 179, in processTorrent

    nzbtomedia.flatten(outputDestination)

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\nzbToMediaUtil.py", line 250, in flatten

    for outputFile in listMediaFiles(outputDestination):

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\nzbToMediaUtil.py", line 842, in listMediaFiles

    if is_sample(fullCurFile) or not is_minSize(fullCurFile, minSize):

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\nzbToMediaUtil.py", line 185, in is_minSize

    inputSize = os.path.getsize(inputName)

  File "C:\Python27\lib\genericpath.py", line 49, in getsize

    return os.stat(filename).st_size

WindowsError: [Error 2] The system cannot find the file specified: 'C:\\Video\\link_w_torrent_download\\processed\\couch

potato_\\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)\\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo'

****************************************************************

 

Total length of the path name is only 173 characters, and not exceeding the 255 character DOS limitation. Not sure where to look first now...
thesatman commented 10 years ago
... and the interesting part is that the file it is referring to (that can not be found) is in the very same directory:

from the console:

 *********************************************

WindowsError: [Error 2] The system cannot find the file specified: 'C:\\Video\\link_w_torrent_download\\processed\\couch

potato_\\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)\\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo'

************************************************

 

from Windows explorer, I have access to :

 

C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)

 

and here I see the file : Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo

 

 

But... on the DOS command line a DIR give no results :

 

***********************************************

    C:\nzbToMedia-GIT\nzbToMedia>dir C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)\

    The system cannot find the file specified.

     

    C:\nzbToMedia-GIT\nzbToMedia>

    *******************************************

    But I can CD into the folder, and do a DIR and find the file:

     

    ************************************************

        C:\nzbToMedia-GIT\nzbToMedia>cd C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by

         Hockney(TUS Release)\

         

        C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)>dir

         Volume in drive C has no label.

         Volume Serial Number is 64FC-E816

         

         Directory of C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Relea

        se)

         

        15.09.2014  19:47    <DIR>          .

        15.09.2014  19:47    <DIR>          ..

        07.09.2014  12:20             3 084 Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo

                       1 File(s)          3 084 bytes

                       2 Dir(s)  1 921 165 225 984 bytes free

        *****************************************************

         

        Who can figure this out ???
thesatman commented 10 years ago
Found out what is going on, (still searching for the technical explanation). Have a look what happens when you "tab" your way through the DIR command. Watch the first request, then compare with the second request. Focus on the "".

C:\>dir \Video\link_w_torrent_download\processed\couchpotato_

 Volume in drive C has no label.

 Volume Serial Number is 64FC-E816

 

 Directory of C:\Video\link_w_torrent_download\processed\couchpotato_             ### no " " in this line  ###

 

15.09.2014  19:47    <DIR>          .

14.09.2014  07:47    <DIR>          ..

15.09.2014  14:39    <DIR>          Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

15.09.2014  14:03    <DIR>          Nights In Rodanthe (2008) dvdrip - multisubs [SuckyReleases].mp4

15.09.2014  19:47    <DIR>          Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)

               0 File(s)              0 bytes

               5 Dir(s)  1 921 165 225 984 bytes free

 

C:\>dir "\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)"                                       ### This is what windows makes of it, including " " signs. ###

 Volume in drive C has no label.

 Volume Serial Number is 64FC-E816

 

 Directory of C:\Video\link_w_torrent_download\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TUS Relea

se)

 

15.09.2014  19:47    <DIR>          .

15.09.2014  19:47    <DIR>          ..

07.09.2014  12:20             3 084 Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo

               1 File(s)          3 084 bytes

               2 Dir(s)  1 921 165 225 984 bytes free

 

Must have something to do with "LONG_NAMES". So I guess what could be done here is DEFAULT INCLUDE " " in your path parameters. I tested this with the first query, and that worked fine. Both with and without. But the second query only works with " ".

 

Let me know if this can be done?
 

On Sunday, September 14, 2014 02:36 PM CEST, Clinton Hall <notifications@github.com> wrote:
 

No need for Api...
Make sure you set the web_root as blank.
If blank (as below) doesn't work, use ""
[SickBeard]
[[SickRage_]]
web_root =
username =
password =
Then try processing again.
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55524243
clinton-hall commented 10 years ago

ok, a few things here. I added .iso to the transcoding, but I didn't add .cue and .bin. It has been a long time since I played with dvd images. I'll have to see how these can be handled. to be honest I didn't think this format was still used.

With the path, yes, in command prompt you need to use "" around any paths that contain spaces. however, the errors from this script come from python modules that should handle the full system path. I don't think I can pass in quoted paths to this module. Also the testing I did does not show any problems with spaces in the paths.

What else is installed on your system that might interfere with/delay file linking etc? Perhaps some antivirus that is a bit over-zealous? the reason I ask is that something has "corrupted" your TorrentToMedia.py (to make that 0 bytes), something was previously corrupting your autoProcessMedia.cfg.spec and something appears to be delaying the linking on these files so that they can't be found immediately?

Can you confirm what version of python and pywin you have installed?

thesatman commented 10 years ago
pywin32-219.win-amd64-py2.7

python-2.7.8.amd64

No anti-virus, straight open for internal use. PMS+CP++ on Win7, Storage W: = Networked NAS drive
clinton-hall commented 10 years ago

Strange. Everything in your setup looks right, but I just can't reproduce the file.

Are you still on nightly, or are you back on dev/master? The error you are seeing above is the same error that I put a catch for a few days back... so this shouldn't be a problem on nightly.

thesatman commented 10 years ago
Still on nightly. Last time the error did not occur, as I said not sure what was different then. But guess that was just cheer coincidence.

 

Did a test by changing the outputDir to plain C:\Video\processed. No networked drive, just local. Remeber this is a bin and cue file, so it won't go through. But just to see if it has a problem with name spaces. It doesn't:

*****************************************

 

C:\>C:\Python27\python.exe C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py "C:\Video\link_w_torrent_download\couchpotato_

" "Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release)" "couchpotato_" "213FCB144D7F7E56C588584103BEE62D76015859"

[08:18:56] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

[08:18:56] [INFO]::MAIN: Checking database structure...

[08:18:56] [DEBUG]::MAIN: Checking Initial Schema database upgrade

[08:18:56] [DEBUG]::MAIN: InitialSchema upgrade not required

[08:18:56] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[08:18:56] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[08:18:57] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[08:18:57] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[08:18:57] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[08:18:58] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[08:18:58] [INFO]::MAIN: Checking if git needs an update

[08:18:58] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

edia-GIT\nzbToMedia

[08:18:58] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

[08:18:58] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

ia-GIT\nzbToMedia

[08:19:02] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

[08:19:02] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

th your shell in C:\nzbToMedia-GIT\nzbToMedia

[08:19:02] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

uccessful

[08:19:02] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

with your shell in C:\nzbToMedia-GIT\nzbToMedia

[08:19:02] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

 successful

[08:19:02] [DEBUG]::MAIN: cur_commit = 27f740c10665c425c3d3dfd35fe39855d9be958c % (newest_commit)= 27f740c10665c425c3d3d

fd35fe39855d9be958c, num_commits_behind = 0, num_commits_ahead = 0

[08:19:02] [INFO]::MAIN: No update needed

[08:19:03] [INFO]::MAIN: nzbToMedia Version:27f740c10665c425c3d3dfd35fe39855d9be958c Branch:nightly (Windows 7)

[08:19:03] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

[08:19:03] [INFO]::MAIN: #########################################################

[08:19:03] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

[08:19:03] [INFO]::MAIN: #########################################################

[08:19:03] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

\Video\\link_w_torrent_download\\couchpotato_', 'Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release)', 'couchpotato_',

 '213FCB144D7F7E56C588584103BEE62D76015859']

[08:19:03] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\couchpotato_ to da

tabase

[08:19:03] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\couchpotato_ | Name: Bee_Season_(2005)_DV

DRip_KVCD_by_Hockney(TUS_Release) | Category: couchpotato_

[08:19:03] [DEBUG]::MAIN: SEARCH: Found the Category: couchpotato_ in directory structure

[08:19:03] [INFO]::MAIN: SEARCH: Found torrent directory Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release) in input

directory directory C:\Video\link_w_torrent_download\couchpotato_

[08:19:03] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\couchpotato_\Bee_Season_(200

5)_DVDRip_KVCD_by_Hockney(TUS_Release)

[08:19:03] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\couchpotato_\Bee_Season_(2005)_DVDRip_K

VCD_by_Hockney(TUS_Release) | Name: Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release) | Category: couchpotato_

[08:19:04] [INFO]::MAIN: Auto-detected SECTION:CouchPotato

[08:19:04] [DEBUG]::MAIN: Stopping torrent Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release) in utorrent while proce

ssing

[08:19:09] [INFO]::MAIN: Output directory set to: C:\Video\processed\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_by_Hockn

ey(TUS_Release)

[08:19:09] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\couchpotato_\Bee_Season_(2005)_D

VDRip_KVCD_by_Hockney(TUS_Release)

[08:19:09] [DEBUG]::MAIN: Found 1 files in C:\Video\link_w_torrent_download\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_b

y_Hockney(TUS_Release)

[08:19:09] [INFO]::COPYLINK: MEDIAFILE: [Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo]

[08:19:09] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD

_by_Hockney(TUS_Release)]

[08:19:09] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TU

S_Release)]

[08:19:09] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:19:09] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:19:09] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:19:09] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\processed\couchpotato_\Bee_Season_(200

5)_DVDRip_KVCD_by_Hockney(TUS_Release)

[08:19:09] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\processed\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_by

_Hockney(TUS_Release)

[08:19:09] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\processed\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_by

_Hockney(TUS_Release)

[08:19:09] [WARNING]::MAIN: Found no media files in C:\Video\processed\couchpotato_\Bee_Season_(2005)_DVDRip_KVCD_by_Hoc

kney(TUS_Release)

[08:19:09] [INFO]::MAIN: Calling CouchPotato:couchpotato_ to post-process:Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_R

elease)

[08:19:11] [INFO]::MAIN: Attemping imdbID lookup for Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release)

[08:19:11] [INFO]::MAIN: Searching folder and file names for imdbID ...

[08:19:11] [INFO]::MAIN: Searching IMDB for imdbID ...

[08:19:13] [DEBUG]::MAIN: Opening URL: http://www.omdbapi.com

[08:19:14] [INFO]::MAIN: Found imdbID [tt0387059]

[08:19:14] [DEBUG]::MAIN: Opening URL: http://localhost:5050/api/4af235adae52473db2f1378a8dc508f3/media.get with PARAMS:

 {'id': u'tt0387059'}

[08:19:16] [WARNING]::COUCHPOTATO: No media files found in directory C:\Video\processed\couchpotato_\Bee_Season_(2005)_D

VDRip_KVCD_by_Hockney(TUS_Release). Processing this as a failed download

[08:19:16] [POSTPROCESS]::COUCHPOTATO: FAILED DOWNLOAD DETECTED FOR Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release

)

[08:19:16] [ERROR]::COUCHPOTATO: Could not find a downloaded movie in the database matching Bee_Season_(2005)_DVDRip_KVC

D_by_Hockney(TUS_Release), exiting!

[08:19:16] [ERROR]::MAIN: A problem was reported in the autoProcess* script. If torrent was paused we will resume seedin

g

[08:19:16] [DEBUG]::MAIN: Starting torrent Bee_Season_(2005)_DVDRip_KVCD_by_Hockney(TUS_Release) in utorrent

[08:19:21] [ERROR]::MAIN: A problem was reported in the C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py script.

 

C:\>*****************************************

 
thesatman commented 10 years ago
new test. Still outputDir local at C:\Video\processed. This time with a network linked source dir C:\Video\w_link_torrent_download\. Source is a folder/subfolder with video_ts structure.

Got some errors on the transcoding. I loaded the original in MakeMKV to see what it there.

Title information
Source title ID: 1
Duration: 1:51:34
Chapters count: 35
Size: 3.5 GB
Segment count: 2
Segment map: 1-18,19-35
File name: title00.mkv

This is the main movie. There are 4 other Titles, only a few 100 Mb together that I don't need. The main movie has 6 audio tracks:

    DD surround 5.1 English

    DD Stereo English

    DD Surround 5.1 French

    DD Surround 5.1 Spanish

    DD Stereo English

    DD Stereo English

I need only #1.

The output from the command line : (copying everything over that is in the screen buffer, but top lines are missing)

************************************************

fd35fe39855d9be958c, num_commits_behind = 0, num_commits_ahead = 0

[08:28:27] [INFO]::MAIN: No update needed

[08:28:27] [INFO]::MAIN: nzbToMedia Version:27f740c10665c425c3d3dfd35fe39855d9be958c Branch:nightly (Windows 7)

[08:28:28] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

[08:28:28] [INFO]::MAIN: #########################################################

[08:28:28] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

[08:28:28] [INFO]::MAIN: #########################################################

[08:28:28] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

\Video\\link_w_torrent_download\\iso', "Ocean's Eleven (2001)(Multi-Subs)Marjan TBS", 'couchpotato_', '44114DBD5FA14F8D2

ED07D5016B5BF4D604AA12C']

[08:28:28] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\iso to database

[08:28:28] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\iso | Name: Ocean's Eleven (2001)(Multi-S

ubs)Marjan TBS | Category: couchpotato_

[08:28:28] [DEBUG]::MAIN: SEARCH: Could not find the category: couchpotato_ in the directory structure

[08:28:28] [INFO]::MAIN: SEARCH: Found torrent directory Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in input directory

directory C:\Video\link_w_torrent_download\iso

[08:28:28] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Mu

lti-Subs)Marjan TBS

[08:28:28] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Ma

rjan TBS | Name: Ocean's Eleven (2001)(Multi-Subs)Marjan TBS | Category: couchpotato_

[08:28:28] [INFO]::MAIN: Auto-detected SECTION:CouchPotato

[08:28:29] [DEBUG]::MAIN: Stopping torrent Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in utorrent while processing

[08:28:34] [INFO]::MAIN: Output directory set to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS

[08:28:34] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-

Subs)Marjan TBS

[08:28:34] [DEBUG]::MAIN: Found 11 files in C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS

[08:28:34] [INFO]::COPYLINK: MEDIAFILE: [697.jpg]

[08:28:34] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS]

[08:28:34] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:28:34] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:28:34] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:28:34] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:28:34] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\697.jpg Will try to make it writeable

[08:28:34] [INFO]::COPYLINK: MEDIAFILE: [VIDEO_TS.VOB]

[08:28:34] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:28:34] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:28:34] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:28:34] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:28:34] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:28:34] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VIDEO_TS.VOB Will try to make it writeable

[08:28:34] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_1.VOB]

[08:28:34] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:28:34] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:28:34] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:28:34] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:28:34] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:29:49] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_1.VOB Will try to make it writeable

[08:29:50] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_3.VOB]

[08:29:50] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:29:50] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:29:50] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:29:50] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:29:50] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:30:46] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_3.VOB Will try to make it writeable

[08:30:46] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_0.VOB]

[08:30:46] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:30:46] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:30:46] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:30:47] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:30:47] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:30:51] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_0.VOB Will try to make it writeable

[08:30:51] [INFO]::COPYLINK: MEDIAFILE: [VTS_02_1.VOB]

[08:30:51] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:30:51] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:30:51] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:30:51] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:30:51] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:31:11] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_02_1.VOB Will try to make it writeable

[08:31:12] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_2.VOB]

[08:31:12] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:31:12] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:31:12] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:31:13] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:31:13] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:31:58] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_2.VOB Will try to make it writeable

[08:31:59] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_4.VOB]

[08:31:59] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[08:31:59] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:31:59] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:31:59] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:31:59] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:30] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_4.VOB Will try to make it writeable

[08:32:31] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg]

[08:32:31] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[08:32:31] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:32:31] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:31] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:32:31] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:31] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg Will try to make it writeable

[08:32:31] [INFO]::COPYLINK: MEDIAFILE: [info.nfo]

[08:32:31] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[08:32:31] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:32:31] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:32] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:32:32] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:32] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\info.nfo Will try to make it writeable

[08:32:32] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg]

[08:32:32] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[08:32:32] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[08:32:32] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:32] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[08:32:32] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[08:32:32] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg Will try to make it writeable

[08:32:32] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\processed\couchpotato_\Ocean's Eleven

(2001)(Multi-Subs)Marjan TBS

[08:32:32] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

)Marjan TBS

[08:32:32] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

)Marjan TBS

[08:32:33] [INFO]::MAIN: Found 7 media files in C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

TBS

[08:32:33] [INFO]::MAIN: Calling CouchPotato:couchpotato_ to post-process:Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

[08:32:34] [INFO]::MAIN: Attemping imdbID lookup for Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

[08:32:34] [INFO]::MAIN: Searching folder and file names for imdbID ...

[08:32:34] [INFO]::MAIN: Searching IMDB for imdbID ...

[08:32:35] [DEBUG]::MAIN: Opening URL: http://www.omdbapi.com

[08:32:36] [INFO]::MAIN: Found imdbID [tt0240772]

[08:32:36] [DEBUG]::MAIN: Opening URL: http://localhost:5050/api/4af235adae52473db2f1378a8dc508f3/media.get with PARAMS:

 {'id': u'tt0240772'}

[08:32:37] [ERROR]::MAIN: no media found for id tt0240772

[08:32:38] [WARNING]::EXCEPTION: No name replacement determined for 697

[08:32:38] [WARNING]::EXCEPTION: No name replacement determined for info

[08:32:38] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VIDEO_TS

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VIDEO_TS.cp(tt0240772).VOB

[08:32:38] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_0

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_0.cp(tt0240772).VOB

[08:32:38] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_1

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_1.cp(tt0240772).VOB

[08:32:38] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_2

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_2.cp(tt0240772).VOB

[08:32:39] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_3

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_3.cp(tt0240772).VOB

[08:32:39] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_4

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_4.cp(tt0240772).VOB

[08:32:39] [DEBUG]::MAIN: Renaming: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_02_1

.VOB to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_02_1.cp(tt0240772).VOB

[08:32:39] [INFO]::MAIN: Checking for files to be transcoded

[08:32:39] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VIDEO_TS.cp(tt0240772).VOB

[08:32:41] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VIDEO_TS.cp(tt0240772).VOB

[08:32:41] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VIDEO_TS.cp(tt0240772).VOB -map 0:1 -c:v

copy -sn W:\torrent_download\transcoded\VIDEO_TS.cp(tt0240772).mkv

[08:32:44] [INFO]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TB

S\VIDEO_TS.cp(tt0240772).VOB to W:\torrent_download\transcoded\VIDEO_TS.cp(tt0240772).mkv succeeded

[08:32:44] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_01_0.cp(tt0240772).VOB

[08:32:44] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_01_0.cp(tt0240772).VOB

[08:32:44] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_0.cp(tt0240772).VOB -map 0:1 -map

0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv

[matroska @ 0000000000307ec0] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:45] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_01_0.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv fai

led

[08:32:45] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_01_1.cp(tt0240772).VOB

[08:32:46] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_01_1.cp(tt0240772).VOB

[08:32:46] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_1.cp(tt0240772).VOB -map 0:1 -map

0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv

[mpeg @ 0000000002b47680] Could not find codec parameters for stream 4 (Audio: ac3, 0 channels): unspecified sample form

at

Consider increasing the value for the 'analyzeduration' and 'probesize' options

[mpeg @ 0000000002b47680] Could not find codec parameters for stream 5 (Audio: ac3, 0 channels): unspecified sample form

at

Consider increasing the value for the 'analyzeduration' and 'probesize' options

[mpeg @ 0000000002b47680] Could not find codec parameters for stream 6 (Audio: ac3, 0 channels): unspecified sample form

at

Consider increasing the value for the 'analyzeduration' and 'probesize' options

[mpeg @ 0000000002b47680] Could not find codec parameters for stream 7 (Audio: ac3, 0 channels): unspecified sample form

at

Consider increasing the value for the 'analyzeduration' and 'probesize' options

[matroska @ 0000000004be0e60] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:46] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_01_1.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv fai

led

[08:32:46] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_01_2.cp(tt0240772).VOB

[08:32:47] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_01_2.cp(tt0240772).VOB

[08:32:47] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_2.cp(tt0240772).VOB -map 0:1 -map

0:0 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv

[mpeg2video @ 0000000002aff4c0] Invalid frame dimensions 0x0.

    Last message repeated 8 times

[matroska @ 0000000004d36640] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:47] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_01_2.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv fai

led

[08:32:47] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_01_3.cp(tt0240772).VOB

[08:32:48] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_01_3.cp(tt0240772).VOB

[08:32:48] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_3.cp(tt0240772).VOB -map 0:0 -map

0:1 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv

[mpeg2video @ 0000000002b084c0] Invalid frame dimensions 0x0.

    Last message repeated 10 times

[matroska @ 0000000002b50400] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:48] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_01_3.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv fai

led

[08:32:48] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_01_4.cp(tt0240772).VOB

[08:32:49] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_01_4.cp(tt0240772).VOB

[08:32:49] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_4.cp(tt0240772).VOB -map 0:4 -map

0:0 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv

[mpeg2video @ 0000000000303020] Invalid frame dimensions 0x0.

    Last message repeated 12 times

[mpeg @ 00000000002e7680] Could not find codec parameters for stream 16 (Audio: ac3, 0 channels): unspecified sample for

mat

Consider increasing the value for the 'analyzeduration' and 'probesize' options

[matroska @ 0000000004d7f540] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:49] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_01_4.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd01.mkv fai

led

[08:32:49] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS_02_1.cp(tt0240772).VOB

[08:32:50] [INFO]::MAIN: Transcoding video: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\

VTS_02_1.cp(tt0240772).VOB

[08:32:50] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-i C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_02_1.cp(tt0240772).VOB -map 0:1 -map

0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd02.mkv

[matroska @ 0000000002ae2720] Can't write packet with unknown timestamp

av_interleaved_write_frame(): Invalid argument

[08:32:50] [ERROR]::MAIN: Transcoding of video C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan T

BS\VTS_02_1.cp(tt0240772).VOB to W:\torrent_download\transcoded\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS.cd02.mkv fai

led

[08:32:50] [ERROR]::COUCHPOTATO: Transcoding failed for files in C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(M

ulti-Subs)Marjan TBS

[08:32:50] [ERROR]::MAIN: A problem was reported in the autoProcess* script. If torrent was paused we will resume seedin

g

[08:32:50] [DEBUG]::MAIN: Starting torrent Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in utorrent

[08:32:55] [ERROR]::MAIN: A problem was reported in the C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py script.

 

C:\>

************************************************

 
clinton-hall commented 10 years ago

ok, the path issue is still strange... the path you changed wasn't the part that had the space in it anyway! but is your current path works...

I see the issue with the VOBs being renamed to have the .cp(ttxxx) in the file path... I'll look to fix this.

clinton-hall commented 10 years ago

Please try the VIDEO_TS folder again (after updating)... this should work now

thesatman commented 10 years ago
aborted with error : AttributeError: 'NoneType' object has no attribute 'group'

*****************************************************

 

C:\>C:\Python27\python.exe C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py "C:\Video\link_w_torrent_download\iso" "Ocean'

s Eleven (2001)(Multi-Subs)Marjan TBS" "couchpotato_" "44114DBD5FA14F8D2ED07D5016B5BF4D604AA12C"

[10:09:15] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

[10:09:15] [INFO]::MAIN: Checking database structure...

[10:09:15] [DEBUG]::MAIN: Checking Initial Schema database upgrade

[10:09:15] [DEBUG]::MAIN: InitialSchema upgrade not required

[10:09:15] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[10:09:15] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[10:09:15] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[10:09:15] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[10:09:15] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[10:09:16] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[10:09:16] [INFO]::MAIN: Checking if git needs an update

[10:09:16] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

edia-GIT\nzbToMedia

[10:09:16] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

[10:09:16] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

ia-GIT\nzbToMedia

[10:09:20] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

[10:09:20] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

th your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:20] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

uccessful

[10:09:20] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

with your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:20] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

 successful

[10:09:20] [DEBUG]::MAIN: cur_commit = 27f740c10665c425c3d3dfd35fe39855d9be958c % (newest_commit)= a78bcbca4d49989dfd823

1998e28fda8c479721e, num_commits_behind = 1, num_commits_ahead = 0

[10:09:20] [INFO]::MAIN: There is a newer version available  (you're 1 commit behind)

[10:09:20] [INFO]::MAIN: Auto-Updating nzbToMedia, Please wait ...

[10:09:20] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[10:09:21] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[10:09:21] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[10:09:21] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[10:09:21] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[10:09:21] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[10:09:21] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

edia-GIT\nzbToMedia

[10:09:21] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

[10:09:21] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

ia-GIT\nzbToMedia

[10:09:32] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

[10:09:32] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

th your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:32] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

uccessful

[10:09:32] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

with your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:32] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

 successful

[10:09:32] [DEBUG]::MAIN: cur_commit = 27f740c10665c425c3d3dfd35fe39855d9be958c % (newest_commit)= a78bcbca4d49989dfd823

1998e28fda8c479721e, num_commits_behind = 1, num_commits_ahead = 0

[10:09:32] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" pull origin nightly with your shell in C:\n

zbToMedia-GIT\nzbToMedia

[10:09:39] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" pull origin nightly : returned successful

[10:09:39] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[10:09:39] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[10:09:39] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[10:09:39] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[10:09:40] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[10:09:40] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[10:09:40] [INFO]::MAIN: Restarting nzbToMedia with ['C:\\Python27\\python.exe', 'C:\\nzbToMedia-GIT\\nzbToMedia\\Torren

tToMedia.py', 'C:\\Video\\link_w_torrent_download\\iso', "Ocean's Eleven (2001)(Multi-Subs)Marjan TBS", 'couchpotato_',

'44114DBD5FA14F8D2ED07D5016B5BF4D604AA12C']

[10:09:41] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

[10:09:41] [INFO]::MAIN: Checking database structure...

[10:09:41] [DEBUG]::MAIN: Checking Initial Schema database upgrade

[10:09:41] [DEBUG]::MAIN: InitialSchema upgrade not required

[10:09:41] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[10:09:41] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[10:09:41] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[10:09:41] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[10:09:41] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[10:09:41] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[10:09:41] [INFO]::MAIN: Checking if git needs an update

[10:09:41] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

edia-GIT\nzbToMedia

[10:09:41] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

[10:09:41] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

ia-GIT\nzbToMedia

[10:09:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

[10:09:43] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

th your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

uccessful

[10:09:43] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

with your shell in C:\nzbToMedia-GIT\nzbToMedia

[10:09:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

 successful

[10:09:43] [DEBUG]::MAIN: cur_commit = a78bcbca4d49989dfd8231998e28fda8c479721e % (newest_commit)= a78bcbca4d49989dfd823

1998e28fda8c479721e, num_commits_behind = 0, num_commits_ahead = 0

[10:09:43] [INFO]::MAIN: No update needed

[10:09:43] [INFO]::MAIN: nzbToMedia Version:a78bcbca4d49989dfd8231998e28fda8c479721e Branch:nightly (Windows 7)

[10:09:43] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

[10:09:43] [INFO]::MAIN: #########################################################

[10:09:43] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

[10:09:43] [INFO]::MAIN: #########################################################

[10:09:43] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

\Video\\link_w_torrent_download\\iso', "Ocean's Eleven (2001)(Multi-Subs)Marjan TBS", 'couchpotato_', '44114DBD5FA14F8D2

ED07D5016B5BF4D604AA12C']

[10:09:43] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\iso to database

[10:09:44] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\iso | Name: Ocean's Eleven (2001)(Multi-S

ubs)Marjan TBS | Category: couchpotato_

[10:09:44] [DEBUG]::MAIN: SEARCH: Could not find the category: couchpotato_ in the directory structure

[10:09:44] [INFO]::MAIN: SEARCH: Found torrent directory Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in input directory

directory C:\Video\link_w_torrent_download\iso

[10:09:44] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Mu

lti-Subs)Marjan TBS

[10:09:44] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Ma

rjan TBS | Name: Ocean's Eleven (2001)(Multi-Subs)Marjan TBS | Category: couchpotato_

[10:09:44] [INFO]::MAIN: Auto-detected SECTION:CouchPotato

[10:09:44] [DEBUG]::MAIN: Stopping torrent Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in utorrent while processing

[10:09:49] [INFO]::MAIN: Output directory set to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS

[10:09:49] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-

Subs)Marjan TBS

[10:09:49] [DEBUG]::MAIN: Found 11 files in C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS

[10:09:49] [INFO]::COPYLINK: MEDIAFILE: [697.jpg]

[10:09:49] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS]

[10:09:49] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:09:49] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:09:50] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:09:50] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:09:50] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\697.jpg Will try to make it writeable

[10:09:50] [INFO]::COPYLINK: MEDIAFILE: [VIDEO_TS.VOB]

[10:09:50] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:09:50] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:09:50] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:09:50] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:09:50] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:09:50] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VIDEO_TS.VOB Will try to make it writeable

[10:09:50] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_1.VOB]

[10:09:50] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:09:50] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:09:50] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:09:50] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:09:50] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:03] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_1.VOB Will try to make it writeable

[10:11:03] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_3.VOB]

[10:11:03] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:11:03] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:11:03] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:04] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:11:04] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:39] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_3.VOB Will try to make it writeable

[10:11:39] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_0.VOB]

[10:11:39] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:11:39] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:11:39] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:40] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:11:40] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:44] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_0.VOB Will try to make it writeable

[10:11:44] [INFO]::COPYLINK: MEDIAFILE: [VTS_02_1.VOB]

[10:11:44] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:11:44] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:11:44] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:11:44] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:11:44] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:12:01] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_02_1.VOB Will try to make it writeable

[10:12:01] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_2.VOB]

[10:12:01] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:12:01] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:12:01] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:12:02] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:12:02] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:12:40] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_2.VOB Will try to make it writeable

[10:12:40] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_4.VOB]

[10:12:40] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\VTS -bestanden]

[10:12:40] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:12:40] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:12:40] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:12:40] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:04] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\VTS_01_4.VOB Will try to make it writeable

[10:13:05] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg]

[10:13:05] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[10:13:05] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:13:05] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:05] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:13:05] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:05] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg Will try to make it writeable

[10:13:05] [INFO]::COPYLINK: MEDIAFILE: [info.nfo]

[10:13:05] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[10:13:05] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:13:05] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:05] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:13:05] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:05] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\info.nfo Will try to make it writeable

[10:13:05] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg]

[10:13:05] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

n TBS\Cover+Info]

[10:13:05] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

]

[10:13:05] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:05] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[10:13:05] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[10:13:06] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

 TBS\Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg Will try to make it writeable

[10:13:06] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\processed\couchpotato_\Ocean's Eleven

(2001)(Multi-Subs)Marjan TBS

[10:13:06] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

)Marjan TBS

[10:13:07] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

)Marjan TBS

[10:13:08] [INFO]::MAIN: Found 7 media files in C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

TBS

[10:13:08] [INFO]::MAIN: Calling CouchPotato:couchpotato_ to post-process:Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

[10:13:13] [INFO]::MAIN: Attemping imdbID lookup for Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

[10:13:13] [INFO]::MAIN: Searching folder and file names for imdbID ...

[10:13:13] [INFO]::MAIN: Searching IMDB for imdbID ...

[10:13:22] [DEBUG]::MAIN: Opening URL: http://www.omdbapi.com

[10:13:22] [INFO]::MAIN: Found imdbID [tt0240772]

[10:13:22] [DEBUG]::MAIN: Opening URL: http://localhost:5050/api/4af235adae52473db2f1378a8dc508f3/media.get with PARAMS:

 {'id': u'tt0240772'}

[10:13:29] [ERROR]::MAIN: no media found for id tt0240772

[10:13:29] [WARNING]::EXCEPTION: No name replacement determined for 697

[10:13:29] [WARNING]::EXCEPTION: No name replacement determined for info

[10:13:30] [INFO]::MAIN: Checking for files to be transcoded

[10:13:30] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

ubs)Marjan TBS\VTS_01_0.VOB

Traceback (most recent call last):

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 323, in <module>

    exit(main(sys.argv))

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 262, in main

    result = processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID, clientAgent)

  File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 206, in processTorrent

    inputCategory)

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\autoProcess\autoProcessMovie.py", line 201, in process

    result, newDirName = transcoder.Transcode_directory(dirName)

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\transcoder\transcoder.py", line 600, in Transcode_directory

    List, remList, newList, mounted, success = processList(List, newDir, bitbucket)

  File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\transcoder\transcoder.py", line 488, in processList

    vtsPath = re.match(".+VIDEO_TS",item).group()

AttributeError: 'NoneType' object has no attribute 'group'

 

C:\>****************************************************

 
clinton-hall commented 10 years ago

So I assumed these DVD formats would always have VIDEO_TS folders... But it looks like these can be named otherwise. Also my flatten calls would change this too.

I'll make another fix soon.

clinton-hall commented 10 years ago

ok... this should fix the error above, and it might work with .bin/.cue images... please update and try again.

thesatman commented 10 years ago
Still a hick-up ...  ;o)

**********************************************

    [13:51:32] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

    [13:51:32] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

    [13:51:32] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

    nzbToMedia-GIT\nzbToMedia

    [13:51:32] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

    [13:51:32] [INFO]::MAIN: Checking if git needs an update

    [13:51:32] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

    edia-GIT\nzbToMedia

    [13:51:33] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

    [13:51:33] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

    ia-GIT\nzbToMedia

    [13:51:37] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

    [13:51:37] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

    th your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:37] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

    uccessful

    [13:51:37] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

    with your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:37] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

     successful

    [13:51:37] [DEBUG]::MAIN: cur_commit = a78bcbca4d49989dfd8231998e28fda8c479721e % (newest_commit)= a217e1edf1988111930b8

    033305963fe1909cd29, num_commits_behind = 1, num_commits_ahead = 0

    [13:51:37] [INFO]::MAIN: There is a newer version available  (you're 1 commit behind)

    [13:51:37] [INFO]::MAIN: Auto-Updating nzbToMedia, Please wait ...

    [13:51:37] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

    [13:51:37] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

    T\nzbToMedia

    [13:51:37] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

    [13:51:37] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

    [13:51:37] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

    nzbToMedia-GIT\nzbToMedia

    [13:51:37] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

    [13:51:37] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

    edia-GIT\nzbToMedia

    [13:51:38] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

    [13:51:38] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

    ia-GIT\nzbToMedia

    [13:51:39] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

    [13:51:39] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

    th your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:39] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

    uccessful

    [13:51:39] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

    with your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:39] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

     successful

    [13:51:39] [DEBUG]::MAIN: cur_commit = a78bcbca4d49989dfd8231998e28fda8c479721e % (newest_commit)= a217e1edf1988111930b8

    033305963fe1909cd29, num_commits_behind = 1, num_commits_ahead = 0

    [13:51:39] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" pull origin nightly with your shell in C:\n

    zbToMedia-GIT\nzbToMedia

    [13:51:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" pull origin nightly : returned successful

    [13:51:43] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

    [13:51:43] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

    T\nzbToMedia

    [13:51:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

    [13:51:43] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

    [13:51:43] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

    nzbToMedia-GIT\nzbToMedia

    [13:51:43] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

    [13:51:43] [INFO]::MAIN: Restarting nzbToMedia with ['C:\\Python27\\python.exe', 'C:\\nzbToMedia-GIT\\nzbToMedia\\Torren

    tToMedia.py', 'C:\\Video\\link_w_torrent_download\\iso', "Ocean's Eleven (2001)(Multi-Subs)Marjan TBS", 'couchpotato_',

    '44114DBD5FA14F8D2ED07D5016B5BF4D604AA12C']

    [13:51:44] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

    [13:51:44] [INFO]::MAIN: Checking database structure...

    [13:51:44] [DEBUG]::MAIN: Checking Initial Schema database upgrade

    [13:51:44] [DEBUG]::MAIN: InitialSchema upgrade not required

    [13:51:44] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

    [13:51:44] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

    T\nzbToMedia

    [13:51:44] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

    [13:51:44] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

    [13:51:44] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

    nzbToMedia-GIT\nzbToMedia

    [13:51:44] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

    [13:51:44] [INFO]::MAIN: Checking if git needs an update

    [13:51:44] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

    edia-GIT\nzbToMedia

    [13:51:44] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

    [13:51:44] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

    ia-GIT\nzbToMedia

    [13:51:46] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

    [13:51:46] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

    th your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:46] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

    uccessful

    [13:51:46] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

    with your shell in C:\nzbToMedia-GIT\nzbToMedia

    [13:51:46] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

     successful

    [13:51:46] [DEBUG]::MAIN: cur_commit = a217e1edf1988111930b8033305963fe1909cd29 % (newest_commit)= a217e1edf1988111930b8

    033305963fe1909cd29, num_commits_behind = 0, num_commits_ahead = 0

    [13:51:46] [INFO]::MAIN: No update needed

    [13:51:46] [INFO]::MAIN: nzbToMedia Version:a217e1edf1988111930b8033305963fe1909cd29 Branch:nightly (Windows 7)

    [13:51:46] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

    [13:51:46] [INFO]::MAIN: #########################################################

    [13:51:46] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

    [13:51:46] [INFO]::MAIN: #########################################################

    [13:51:46] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

    \Video\\link_w_torrent_download\\iso', "Ocean's Eleven (2001)(Multi-Subs)Marjan TBS", 'couchpotato_', '44114DBD5FA14F8D2

    ED07D5016B5BF4D604AA12C']

    [13:51:46] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\iso to database

    [13:51:47] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\iso | Name: Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS | Category: couchpotato_

    [13:51:47] [DEBUG]::MAIN: SEARCH: Could not find the category: couchpotato_ in the directory structure

    [13:51:47] [INFO]::MAIN: SEARCH: Found torrent directory Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in input directory

    directory C:\Video\link_w_torrent_download\iso

    [13:51:47] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Mu

    lti-Subs)Marjan TBS

    [13:51:47] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Ma

    rjan TBS | Name: Ocean's Eleven (2001)(Multi-Subs)Marjan TBS | Category: couchpotato_

    [13:51:47] [INFO]::MAIN: Auto-detected SECTION:CouchPotato

    [13:51:47] [DEBUG]::MAIN: Stopping torrent Ocean's Eleven (2001)(Multi-Subs)Marjan TBS in utorrent while processing

    [13:51:52] [INFO]::MAIN: Output directory set to: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS

    [13:51:52] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-

    Subs)Marjan TBS

    [13:51:52] [DEBUG]::MAIN: Found 11 files in C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS

    [13:51:52] [INFO]::COPYLINK: MEDIAFILE: [697.jpg]

    [13:51:52] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS]

    [13:51:52] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:51:52] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:51:53] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:51:53] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:51:53] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\697.jpg Will try to make it writeable

    [13:51:53] [INFO]::COPYLINK: MEDIAFILE: [VIDEO_TS.VOB]

    [13:51:53] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:51:53] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:51:53] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:51:53] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:51:53] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:51:53] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VIDEO_TS.VOB Will try to make it writeable

    [13:51:53] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_1.VOB]

    [13:51:53] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:51:53] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:51:53] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:51:53] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:51:53] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:52:52] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_01_1.VOB Will try to make it writeable

    [13:52:53] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_3.VOB]

    [13:52:53] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:52:53] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:52:53] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:52:53] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:52:53] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:53:42] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_01_3.VOB Will try to make it writeable

    [13:53:42] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_0.VOB]

    [13:53:42] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:53:42] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:53:42] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:53:43] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:53:43] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:53:47] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_01_0.VOB Will try to make it writeable

    [13:53:47] [INFO]::COPYLINK: MEDIAFILE: [VTS_02_1.VOB]

    [13:53:47] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:53:47] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:53:47] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:53:48] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:53:48] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:54:11] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_02_1.VOB Will try to make it writeable

    [13:54:11] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_2.VOB]

    [13:54:11] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:54:11] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:54:11] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:54:12] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:54:12] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:54:58] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_01_2.VOB Will try to make it writeable

    [13:54:58] [INFO]::COPYLINK: MEDIAFILE: [VTS_01_4.VOB]

    [13:54:58] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\VTS -bestanden]

    [13:54:58] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:54:58] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:54:59] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:54:59] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:31] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\VTS_01_4.VOB Will try to make it writeable

    [13:55:32] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg]

    [13:55:32] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\Cover+Info]

    [13:55:32] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:55:32] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:32] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:55:32] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:32] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\Ocean_'s_Eleven_R2-[front]-[www.FreeCovers.net].jpg Will try to make it writeable

    [13:55:32] [INFO]::COPYLINK: MEDIAFILE: [info.nfo]

    [13:55:32] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\Cover+Info]

    [13:55:32] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:55:32] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:32] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:55:32] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:32] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\info.nfo Will try to make it writeable

    [13:55:32] [INFO]::COPYLINK: MEDIAFILE: [Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg]

    [13:55:32] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\iso\Ocean's Eleven (2001)(Multi-Subs)Marja

    n TBS\Cover+Info]

    [13:55:32] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    ]

    [13:55:33] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:33] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

    , copying instead ...

    [13:55:33] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

    [13:55:33] [DEBUG]::MAIN: Read only mode on file C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

     TBS\Ocean_'s_Eleven_R0_CUSTOM-[cd]-[www.FreeCovers.net].jpg Will try to make it writeable

    [13:55:33] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\processed\couchpotato_\Ocean's Eleven

    (2001)(Multi-Subs)Marjan TBS

    [13:55:33] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

    )Marjan TBS

    [13:55:34] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs

    )Marjan TBS

    [13:55:35] [INFO]::MAIN: Found 7 media files in C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan

    TBS

    [13:55:35] [INFO]::MAIN: Calling CouchPotato:couchpotato_ to post-process:Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    [13:55:39] [INFO]::MAIN: Attemping imdbID lookup for Ocean's Eleven (2001)(Multi-Subs)Marjan TBS

    [13:55:39] [INFO]::MAIN: Searching folder and file names for imdbID ...

    [13:55:39] [INFO]::MAIN: Searching IMDB for imdbID ...

    [13:55:49] [DEBUG]::MAIN: Opening URL: http://www.omdbapi.com

    [13:55:49] [INFO]::MAIN: Found imdbID [tt0240772]

    [13:55:49] [DEBUG]::MAIN: Opening URL: http://localhost:5050/api/4af235adae52473db2f1378a8dc508f3/media.get with PARAMS:

     {'id': u'tt0240772'}

    [13:55:54] [ERROR]::MAIN: no media found for id tt0240772

    [13:55:54] [WARNING]::EXCEPTION: No name replacement determined for 697

    [13:55:54] [WARNING]::EXCEPTION: No name replacement determined for info

    [13:55:54] [INFO]::MAIN: Checking for files to be transcoded

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_01_0.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_01_1.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_01_2.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_01_3.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_01_4.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Found VIDEO_TS image file: C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-S

    ubs)Marjan TBS\VTS_02_1.VOB

    [13:55:54] [DEBUG]::TRANSCODER: Successfully extracted .vob file concat:C:\Video\processed\couchpotato_\Ocean's Eleven (

    2001)(Multi-Subs)Marjan TBS\VTS_01_1.VOB|C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS

    _01_2.VOB|C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_3.VOB|C:\Video\processed\co

    uchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_4.VOB from disk image

    [13:55:54] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

    ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Sub

    s)Marjan TBS\VTS_01_1.VOB|C:\Video\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_2.VOB|C:\Vi

    deo\processed\couchpotato_\Ocean's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_3.VOB|C:\Video\processed\couchpotato_\Ocea

    n's Eleven (2001)(Multi-Subs)Marjan TBS\VTS_01_4.VOB

    Traceback (most recent call last):

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 323, in <module>

        exit(main(sys.argv))

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 262, in main

        result = processTorrent(inputDirectory, inputName, inputCategory, inputHash, inputID, clientAgent)

      File "C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py", line 206, in processTorrent

        inputCategory)

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\autoProcess\autoProcessMovie.py", line 201, in process

        result, newDirName = transcoder.Transcode_directory(dirName)

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\transcoder\transcoder.py", line 619, in Transcode_directory

        command = buildCommands(file, newDir, movieName)

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\transcoder\transcoder.py", line 391, in buildCommands

        for subfile in get_subs(file):

      File "C:\nzbToMedia-GIT\nzbToMedia\nzbtomedia\transcoder\transcoder.py", line 411, in get_subs

        for dirname, dirs, filenames in os.walk(dir):

      File "C:\Python27\lib\os.py", line 278, in walk

        names = listdir(top)

    TypeError: must be (buffer overflow), not str

     

    C:\>

************************************************
 

On Tuesday, September 16, 2014 01:46 PM CEST, Clinton Hall <notifications@github.com> wrote:
 

ok... this should fix the error above, and it **might** work with .bin/.cue images...
please update and try again.
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55730839
clinton-hall commented 10 years ago

ok. please make the following changes to your config

[Transcoder]
    embedSubs = 0
    generalOptions = -fflags, +genpts    
thesatman commented 10 years ago
looks like we have a winner here :o)

A minor detail: The transcoder has produced 2 mkv files. One is the actual movie, the second is an "extra" feature that was on the dvd (the making of ...). So in this case only the VTS_01_<xx> should have been processed, and delete the VTS_02_<xx> files. I don't know if this is a rule of tumb.

Anyway, since the renamer found 2 mkv files, I have now Ocean's Eleven (2001)- cd1 and Ocean's Eleven (2001)- cd2 in the movie folder. Is this something that can be controlled?
thesatman commented 10 years ago
No luck with bin and cue

**********************************

 

C:\>C:\Python27\python.exe C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py "C:\Video\link_w_torrent_download\couchpotato_

" "Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)" "couchpotato_" "213FCB144D7F7E56C588584103BEE62D76015859"

[18:39:23] [INFO]::MAIN: Loading config from [C:\nzbToMedia-GIT\nzbToMedia\autoProcessMedia.cfg]

[18:39:23] [INFO]::MAIN: Checking database structure...

[18:39:23] [DEBUG]::MAIN: Checking Initial Schema database upgrade

[18:39:23] [DEBUG]::MAIN: InitialSchema upgrade not required

[18:39:23] [DEBUG]::MAIN: Checking if we can use git commands: "C:\Program Files (x86)\Git\bin\git.exe" version

[18:39:23] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" version with your shell in C:\nzbToMedia-GI

T\nzbToMedia

[18:39:23] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" version : returned successful

[18:39:23] [DEBUG]::MAIN: Using: "C:\Program Files (x86)\Git\bin\git.exe"

[18:39:23] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD with your shell in C:\

nzbToMedia-GIT\nzbToMedia

[18:39:23] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" symbolic-ref -q HEAD : returned successful

[18:39:23] [INFO]::MAIN: Checking if git needs an update

[18:39:23] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD with your shell in C:\nzbToM

edia-GIT\nzbToMedia

[18:39:23] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse HEAD : returned successful

[18:39:23] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" fetch origin with your shell in C:\nzbToMed

ia-GIT\nzbToMedia

[18:39:33] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" fetch origin : returned successful

[18:39:33] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" wi

th your shell in C:\nzbToMedia-GIT\nzbToMedia

[18:39:33] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-parse --verify --quiet "@{upstream}" : returned s

uccessful

[18:39:33] [DEBUG]::MAIN: Executing "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD

with your shell in C:\nzbToMedia-GIT\nzbToMedia

[18:39:33] [DEBUG]::MAIN: "C:\Program Files (x86)\Git\bin\git.exe" rev-list --left-right "@{upstream}"...HEAD : returned

 successful

[18:39:33] [DEBUG]::MAIN: cur_commit = a217e1edf1988111930b8033305963fe1909cd29 % (newest_commit)= a217e1edf1988111930b8

033305963fe1909cd29, num_commits_behind = 0, num_commits_ahead = 0

[18:39:33] [INFO]::MAIN: No update needed

[18:39:33] [INFO]::MAIN: nzbToMedia Version:a217e1edf1988111930b8033305963fe1909cd29 Branch:nightly (Windows 7)

[18:39:33] [DEBUG]::MAIN: Connecting to utorrent: http://localhost:8082/gui/

[18:39:33] [INFO]::MAIN: #########################################################

[18:39:33] [INFO]::MAIN: ## ..::[TorrentToMedia.py]::.. ##

[18:39:33] [INFO]::MAIN: #########################################################

[18:39:33] [DEBUG]::MAIN: Options passed into TorrentToMedia: ['C:\\nzbToMedia-GIT\\nzbToMedia\\TorrentToMedia.py', 'C:\

\Video\\link_w_torrent_download\\couchpotato_', 'Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)', 'couchpotato_',

 '213FCB144D7F7E56C588584103BEE62D76015859']

[18:39:33] [DEBUG]::MAIN: Adding TORRENT download info for directory C:\Video\link_w_torrent_download\couchpotato_ to da

tabase

[18:39:34] [DEBUG]::MAIN: Received Directory: C:\Video\link_w_torrent_download\couchpotato_ | Name: Bee Season (2005) DV

DRip KVCD by Hockney(TUS Release) | Category: couchpotato_

[18:39:34] [DEBUG]::MAIN: SEARCH: Found the Category: couchpotato_ in directory structure

[18:39:34] [INFO]::MAIN: SEARCH: Found torrent directory Bee Season (2005) DVDRip KVCD by Hockney(TUS Release) in input

directory directory C:\Video\link_w_torrent_download\couchpotato_

[18:39:34] [INFO]::MAIN: SEARCH: Setting inputDirectory to C:\Video\link_w_torrent_download\couchpotato_\Bee Season (200

5) DVDRip KVCD by Hockney(TUS Release)

[18:39:34] [DEBUG]::MAIN: Determined Directory: C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) DVDRip K

VCD by Hockney(TUS Release) | Name: Bee Season (2005) DVDRip KVCD by Hockney(TUS Release) | Category: couchpotato_

[18:39:34] [INFO]::MAIN: Auto-detected SECTION:CouchPotato

[18:39:34] [DEBUG]::MAIN: Stopping torrent Bee Season (2005) DVDRip KVCD by Hockney(TUS Release) in utorrent while proce

ssing

[18:39:39] [INFO]::MAIN: Output directory set to: C:\Video\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockn

ey(TUS Release)

[18:39:39] [DEBUG]::MAIN: Scanning files in directory: C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) D

VDRip KVCD by Hockney(TUS Release)

[18:39:39] [DEBUG]::MAIN: Found 1 files in C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) DVDRip KVCD b

y Hockney(TUS Release)

[18:39:39] [INFO]::COPYLINK: MEDIAFILE: [Bee Season (2005) DVDRip KVCD by Hockney(TUS Release).nfo]

[18:39:39] [INFO]::COPYLINK: SOURCE FOLDER: [C:\Video\link_w_torrent_download\couchpotato_\Bee Season (2005) DVDRip KVCD

 by Hockney(TUS Release)]

[18:39:39] [INFO]::COPYLINK: TARGET FOLDER: [C:\Video\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hockney(TU

S Release)]

[18:39:39] [INFO]::COPYLINK: Hard linking SOURCE MEDIAFILE -> TARGET FOLDER

[18:39:39] [WARNING]::COPYLINK: Error: The system cannot move the file to a different disk drive.

, copying instead ...

[18:39:39] [INFO]::COPYLINK: Copying SOURCE MEDIAFILE -> TARGET FOLDER

[18:39:39] [DEBUG]::MAIN: Checking for archives to extract in directory: C:\Video\processed\couchpotato_\Bee Season (200

5) DVDRip KVCD by Hockney(TUS Release)

[18:39:39] [INFO]::MAIN: FLATTEN: Flattening directory: C:\Video\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by

 Hockney(TUS Release)

[18:39:39] [DEBUG]::MAIN: Checking for empty folders in:C:\Video\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by

 Hockney(TUS Release)

[18:39:39] [WARNING]::MAIN: Found no media files in C:\Video\processed\couchpotato_\Bee Season (2005) DVDRip KVCD by Hoc

kney(TUS Release)

[18:39:40] [INFO]::MAIN: Calling CouchPotato:couchpotato_ to post-process:Bee Season (2005) DVDRip KVCD by Hockney(TUS R

elease)

[18:39:41] [INFO]::MAIN: Attemping imdbID lookup for Bee Season (2005) DVDRip KVCD by Hockney(TUS Release)

[18:39:41] [INFO]::MAIN: Searching folder and file names for imdbID ...

[18:39:41] [INFO]::MAIN: Searching IMDB for imdbID ...

[18:39:41] [DEBUG]::MAIN: Opening URL: http://www.omdbapi.com

[18:39:42] [INFO]::MAIN: Found imdbID [tt0387059]

[18:39:42] [DEBUG]::MAIN: Opening URL: http://localhost:5050/api/4af235adae52473db2f1378a8dc508f3/media.get with PARAMS:

 {'id': u'tt0387059'}

[18:39:43] [WARNING]::COUCHPOTATO: No media files found in directory C:\Video\processed\couchpotato_\Bee Season (2005) D

VDRip KVCD by Hockney(TUS Release). Processing this as a failed download

[18:39:43] [POSTPROCESS]::COUCHPOTATO: FAILED DOWNLOAD DETECTED FOR Bee Season (2005) DVDRip KVCD by Hockney(TUS Release

)

[18:39:43] [ERROR]::COUCHPOTATO: Could not find a downloaded movie in the database matching Bee Season (2005) DVDRip KVC

D by Hockney(TUS Release), exiting!

[18:39:43] [ERROR]::MAIN: A problem was reported in the autoProcess* script. If torrent was paused we will resume seedin

g

[18:39:43] [DEBUG]::MAIN: Starting torrent Bee Season (2005) DVDRip KVCD by Hockney(TUS Release) in utorrent

[18:39:48] [ERROR]::MAIN: A problem was reported in the C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py script.

 

C:\>

***********************************

 
thesatman commented 10 years ago
Transcoding: I just loaded a video_ts.ifo file in Makemkv to check what the vob files include. Here I see 4 titles of 2,9 Gb (4x2,9 Gb). Every title is the same main movie, but with a different angle. Can the transcoding process deal with this? Can it pick angle 1 and skip the rest? Also I have audio ENG DTS and ENG DD Stereo. I prefer DTS. Howto?
clinton-hall commented 10 years ago
  1. For the 2 movie issue, I wasn't able to get any definitive answer regarding which track was primary and which was bonus features etc, so I transcode them all as cd1,cd2 etc... I figured most players will play these in order and you can stop after the main feature etc (also you can always manually remove the smaller ones later etc, so figured it was better to include these)
  2. For the multiple angles, I don't know how common this is, but what the script will do is make each angle into cd1, cd2 etc... So all the videos are there, but it will play through 1 angle then try to play the movie through at a different angle etc...
  3. For audio. All audio tracks are in the mkv, so you can select the preferred.
  4. For the .bin, can you please add .bin to your [Extensions] media_Container settings and then try again.
thesatman commented 10 years ago
Hey. Back to rapport to you on the transcoding. For what concernes the bin file: Under the process I got an error about the bin being corrupted. So right now I am extracting the AV file with IsoBuster to see how this goes.

 

I did a new run with a movie with video_ts folder. Transcoding stumbled over vob 1 through 4 (I think it was ...) and ended up with one main movie (600 Mb) and a series of smaller files (must be the smaller vob files). The main movie however was with English audio for the impaired... (yes, like "opening seen, the Columbia Pictures lady standing in front of a colored sky, holding a torch. Words passing on the screen from right to left with the word "Columbia".... and so one).

 

This is where I guessed it would go wrong. Telling the system that you want the audio with language code ENG is one thing, but how can the program choose if you have both DTS and Stereo available (where one of them must be for the impaired). I opened the video_ts.ifo file in MakeMKV. Got the (classical) warning that the image was produced by a RIP software it apparently does not like, and let my carry on with the rest of the process. When opening the file I see that title one, channel (angle) one is marked. The other angles are also tittle one, but they are not marked, hence skipped when converting with MakeMKV. The other titles are marked, which are the smaller vob files. I say this just to compare between what I see is happening in MakeMKV and the automated process you are using. In Title one I mark DTS ENG, en uncheck all other audio. Choose my subs and go. The end product was just what I needed.

I'll give you the log for the video_ts transcoding.  ;o)

******************************************

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 55344, current: 55320; changing to 5534

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 56240, current: 56216; changing to 5624

0. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 57136, current: 57112; changing to 5713

6. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 63920, current: 63864; changing to 6392

0. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 63920, current: 63904; changing to 6392

0. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 64784, current: 64728; changing to 6478

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 64784, current: 64768; changing to 6478

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 65648, current: 65592; changing to 6564

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 65648, current: 65632; changing to 6564

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 66512, current: 66456; changing to 6651

2. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 66512, current: 66496; changing to 6651

2. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 68336, current: 68312; changing to 6833

6. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 69232, current: 69208; changing to 6923

2. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 70128, current: 70104; changing to 7012

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 71024, current: 71000; changing to 7102

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 77808, current: 77784; changing to 7780

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 78704, current: 78680; changing to 7870

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 79600, current: 79576; changing to 7960

0. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 80496, current: 80472; changing to 8049

6. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 87152, current: 87128; changing to 8715

2. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 88048, current: 88024; changing to 8804

8. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 88944, current: 88920; changing to 8894

4. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 89840, current: 89816; changing to 8984

0. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 113264, current: 113240; changing to 11

3264. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 114160, current: 114136; changing to 11

4160. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 115056, current: 115032; changing to 11

5056. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 115952, current: 115928; changing to 11

5952. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 117808, current: 117784; changing to 11

7808. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 118704, current: 118680; changing to 11

8704. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 119600, current: 119576; changing to 11

9600. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 120496, current: 120472; changing to 12

0496. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 127152, current: 127128; changing to 12

7152. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 128048, current: 128024; changing to 12

8048. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 128944, current: 128920; changing to 12

8944. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 129840, current: 129816; changing to 12

9840. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 136624, current: 136568; changing to 13

6624. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 136624, current: 136608; changing to 13

6624. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 137488, current: 137432; changing to 13

7488. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 137488, current: 137472; changing to 13

7488. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 138352, current: 138296; changing to 13

8352. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 138352, current: 138336; changing to 13

8352. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 139216, current: 139160; changing to 13

9216. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 139216, current: 139200; changing to 13

9216. This may result in incorrect timestamps in the output file.

[mpeg @ 00000000003018e0] New subtitle stream 0:6 at pos:119373838 and DTS:86.813s

[mpeg @ 00000000003018e0] New subtitle stream 0:7 at pos:119390222 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:8 at pos:119396366 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:9 at pos:119398414 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:10 at pos:119400462 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:11 at pos:119402510 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:12 at pos:119404558 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:13 at pos:119406606 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:14 at pos:119408654 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:15 at pos:119410702 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:16 at pos:119412750 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:17 at pos:119414798 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:18 at pos:119416846 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:19 at pos:119418894 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:20 at pos:119420942 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:21 at pos:119422990 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:22 at pos:119425038 and DTS:86.853s

[mpeg @ 00000000003018e0] New subtitle stream 0:23 at pos:129189902 and DTS:103.773s

[mpeg @ 00000000003018e0] New subtitle stream 0:24 at pos:129228814 and DTS:103.773s

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1380688, current: 1380664; changing to

1380688. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1381584, current: 1381560; changing to

1381584. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1382480, current: 1382456; changing to

1382480. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1383376, current: 1383352; changing to

1383376. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1390160, current: 1390136; changing to

1390160. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1391056, current: 1391032; changing to

1391056. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1391952, current: 1391928; changing to

1391952. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1392848, current: 1392824; changing to

1392848. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1399504, current: 1399480; changing to

1399504. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1400400, current: 1400376; changing to

1400400. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1401296, current: 1401272; changing to

1401296. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1402192, current: 1402168; changing to

1402192. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1404048, current: 1404024; changing to

1404048. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1404944, current: 1404920; changing to

1404944. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1405840, current: 1405816; changing to

1405840. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1406736, current: 1406712; changing to

1406736. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1413392, current: 1413368; changing to

1413392. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1414288, current: 1414264; changing to

1414288. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1415184, current: 1415160; changing to

1415184. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1416080, current: 1416056; changing to

1416080. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1422864, current: 1422840; changing to

1422864. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1423760, current: 1423736; changing to

1423760. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1424656, current: 1424632; changing to

1424656. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1425552, current: 1425528; changing to

1425552. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1432208, current: 1432184; changing to

1432208. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1433104, current: 1433080; changing to

1433104. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1434000, current: 1433976; changing to

1434000. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1434896, current: 1434872; changing to

1434896. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1436752, current: 1436728; changing to

1436752. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1437648, current: 1437624; changing to

1437648. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1438544, current: 1438520; changing to

1438544. This may result in incorrect timestamps in the output file.

[matroska @ 0000000004e7f460] Non-monotonous DTS in output stream 0:0; previous: 1439440, current: 1439416; changing to

1439440. This may result in incorrect timestamps in the output file.

[11:12:39] [ERROR]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

 TBS\VTS_01_1.VOB|C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_01_2.VOB|C:\Video\processed

\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_01_3.VOB|C:\Video\processed\couchpotato_\Closer (2004) (Multi-S

ubs) Juultje TBS\VTS_01_4.VOB has failed

[11:12:41] [ERROR]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

 TBS\VTS_01_1.VOB|C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_01_2.VOB|C:\Video\processed

\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_01_3.VOB|C:\Video\processed\couchpotato_\Closer (2004) (Multi-S

ubs) Juultje TBS\VTS_01_4.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd01.mkv failed

[11:12:41] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_02_1.VOB

[11:12:46] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_02_1.VOB

[11:12:46] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_02_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd02.mkv

[11:13:08] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_02_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd02.mkv succeeded

[11:13:08] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_03_1.VOB

[11:13:09] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_03_1.VOB

[11:13:09] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_03_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd03.mkv

[mpeg @ 0000000002bd0f00] New subtitle stream 0:4 at pos:2600974 and DTS:5.64976s

[11:13:16] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_03_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd03.mkv succeeded

[11:13:16] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_04_1.VOB

[11:13:17] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_04_1.VOB

[11:13:17] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_04_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd04.mkv

[mpeg @ 0000000002ad0f00] New subtitle stream 0:4 at pos:2942990 and DTS:6.60976s

[11:13:32] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_04_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd04.mkv succeeded

[11:13:32] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_05_1.VOB

[11:13:32] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_05_1.VOB

[11:13:32] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_05_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd05.mkv

[mpeg @ 0000000002ad0f00] New subtitle stream 0:3 at pos:1497102 and DTS:5.20976s

[mpeg @ 0000000002ad0f00] New subtitle stream 0:4 at pos:1501198 and DTS:5.20976s

[11:13:40] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_05_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd05.mkv succeeded

[11:13:40] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_06_1.VOB

[11:13:40] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_06_1.VOB

[11:13:40] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_06_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd06.mkv

[11:13:49] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_06_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd06.mkv succeeded

[11:13:49] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_07_1.VOB

[11:13:49] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_07_1.VOB

[11:13:49] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_07_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd07.mkv

[11:13:59] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_07_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd07.mkv succeeded

[11:13:59] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_08_1.VOB

[11:13:59] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_08_1.VOB

[11:13:59] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_08_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd08.mkv

[11:14:08] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_08_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd08.mkv succeeded

[11:14:08] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_09_1.VOB

[11:14:09] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_09_1.VOB

[11:14:09] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_09_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd09.mkv

[11:14:19] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_09_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd09.mkv succeeded

[11:14:19] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_10_1.VOB

[11:14:20] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_10_1.VOB

[11:14:20] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_10_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd10.mkv

[11:14:22] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_10_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd10.mkv succeeded

[11:14:22] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_11_1.VOB

[11:14:23] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_11_1.VOB

[11:14:23] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_11_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd11.mkv

[11:14:30] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_11_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd11.mkv succeeded

[11:14:30] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffprobe.exe -v quiet -print_f

ormat json -show_format -show_streams -show_error concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juul

tje TBS\VTS_12_1.VOB

[11:14:31] [INFO]::MAIN: Transcoding video: concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TB

S\VTS_12_1.VOB

[11:14:31] [DEBUG]::MAIN: calling command: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg.exe -loglevel warning

-fflags +genpts -i concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje TBS\VTS_12_1.VOB -map 0:1 -

map 0:2 -c:v copy -c:a:0 copy -sn W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd12.mkv

[11:14:31] [INFO]::MAIN: Transcoding of video concat:C:\Video\processed\couchpotato_\Closer (2004) (Multi-Subs) Juultje

TBS\VTS_12_1.VOB to W:\torrent_download\transcoded\Closer (2004) (Multi-Subs) Juultje TBS.cd12.mkv succeeded

[11:14:31] [ERROR]::COUCHPOTATO: Transcoding failed for files in C:\Video\processed\couchpotato_\Closer (2004) (Multi-Su

bs) Juultje TBS

[11:14:32] [ERROR]::MAIN: A problem was reported in the autoProcess* script. If torrent was paused we will resume seedin

g

[11:14:32] [DEBUG]::MAIN: Starting torrent Closer (2004) (Multi-Subs) Juultje TBS in utorrent

[11:14:41] [ERROR]::MAIN: A problem was reported in the C:\nzbToMedia-GIT\nzbToMedia\TorrentToMedia.py script.

 

C:\>*******************************************

 

On Wednesday, September 17, 2014 12:33 AM CEST, Clinton Hall <notifications@github.com> wrote:
 

1. For the 2 movie issue, I wasn't able to get any definitive answer regarding which track was primary and which was bonus features etc, so I transcode them all as cd1,cd2 etc... I figured most players will play these in order and you can stop after the main feature etc (also you can always manually remove the smaller ones later etc, so figured it was better to include these)
2. For the multiple angles, I don't know how common this is, but what the script will do is make each angle into cd1, cd2 etc... So all the videos are there, but it will play through 1 angle then try to play the movie through at a different angle etc...
3. For audio. All audio tracks are in the mkv, so you can select the preferred.
4. For the .bin, can you please add .bin to your [Extensions] media_Container settings and then try again.
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55824007
clinton-hall commented 10 years ago

So when you play the .mkv with the audio for the hearing imparted, can you select a different audio track? All tracks should be there...

thesatman commented 10 years ago
Played with VLC. Only one audio track.

*****************

# audioLanguage. set the 3 letter language code you want as your primary audio track.

    audioLanguage = eng

    # allAudioLanguages. 1 will keep all audio tracks (uses AudioCodec3) where available.

    allAudioLanguages = 0

 

******************
About bin: I managed to extract movie.dat, Converted to mp4 with Total Convertor. File is playable and doesn't seem corrupt. I can always test it with ffmpeg. What is the command I should use  for movie.mp4?
 

On Wednesday, September 17, 2014 02:48 PM CEST, Clinton Hall <notifications@github.com> wrote:
 

So when you play the .mkv with the audio for the hearing imparted, can you select a different audio track? All tracks should be there...
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55888054
clinton-hall commented 10 years ago

ok, you need allAudioLanguages = 1

for the .bin, what is the structure of this? the .bin contains a .dat? I thought the .bin was another image container that contained VIDEO_TS?

clinton-hall commented 10 years ago

* in theory* this should now use 7zip (pre-packaged in this repo for Windows) to extract the files from .iso and .bin images (and possibly others in the future). It extracts a list of files first, parses these to build the commands, then actually calls 7zip to extract the files to PIPE and passes this in to ffmpeg.

So this doesn't use additional hard disk, it is relatively fast and efficient, and should be a more advanced method of handling this (I had to learn a LOT here).

I have tested on Windows, using an .iso. I don't have a .bin to test with...

thesatman commented 10 years ago
I'll give it a spin on Win7 and let you know how things are going.

 

I found another interesting way to use the ffmpeg. As in my case, my hardware (HP Proliant) is capable in streaming up to 720p. Some 1080p depending on how they are ripped can work, but more demanding files are taking to much CPU power. And then the stuttering begins when playing the movie.

 

Yesterday was one of those days. In my "wanted" list I had a movie that appeared OK in quality/size. (about 2 Gb). Once loaded in Plex I could see the file information:

 

Media

    Video Resolution 720p

    Duration 1:49:02

    Bitrate 2649 kbps

    Width 1280

    Height 544

    Aspect Ratio 2.35

    Container MKV

    Video Frame Rate 24p

After about 35 minutes, the movie stopped on my Roku wireless stick. So ... I did some reading and decided that all my movies with 1080p or higher should be transcoded to 720p. There is nothing more frustrating then to abort the planned movie night with the Misses... The general idea is like in this case : a 2 Gb 1280p movie should be 720p witht he highest possible quality, but be no bigger in size then the original file.

 

My test: C:\ffmpeg-20140901-git-97b8809-win64-static\bin\ffmpeg -i z:/movies/"the sorcerer's apprentice (2010).mkv" -vf scale=-1:720 -c:v libx264 -crf 0 -preset veryslow -c:a copy z:/movies/"the sorcerer's apprentice (2010) 720p.mkv"

 

resulted in a file size WAY bigger then the original file. I guess I need to fiddle with the -crf values a bit. (hint hint: any suggestions?)

 

But here is my question to you. Could it become an option in NzbToMedia to downscale from 1080+ (give the user the option to choose??) to 720p (or again let the user choose). We just need to face the fact that not everybody has wired internet around the entire house, or a super computer, to deal with 1280p movies with bitrates of 2000 kbps or more. This ffmpeg feature could automatically streamline the entire video collection depending on the users preferences.
clinton-hall commented 10 years ago

The option to downscale should be there... If you enter the

[Transcoder]
outputVideoResolution = 1280:720

This only applies to the Custom settings... not the "defaults" Some defaults do have resolution settings...e.g. ipod, Apple-TV, iPad-720p...

However, if you want to do this for mkvs, and rip isos/bins you need to set the custom settings to yield

    outputDefault =
    #### Define custom settings below.
    outputVideoExtension = .mkv
    outputVideoCodec = libx264
    VideoCodecAllow = libx264, h264, h.264, AVC, avc, mpeg4, msmpeg4, MPEG-4, mpeg2video
    outputVideoPreset = 
    outputVideoResolution = 1280:720
    outputVideoFramerate = 
    outputVideoBitrate = 
    outputAudioCodec = dts
    AudioCodecAllow = libfaac, dts, ac3, mp2, mp3
    outputAudioChannels = 8
    outputAudioBitrate = 
    outputAudioTrack2Codec = 
    AudioCodec2Allow = 
    outputAudioTrack2Channels =  
    outputAudioTrack2Bitrate = 
    outputAudioOtherCodec = ac3
    AudioOtherCodecAllow = libfaac, dts, ac3, mp2, mp3
    outputAudioOtherChannels =
    outputAudioOtherBitrate = 
    outputSubtitleCodec = mov_text

You may want to look at setting video bitrate and audio bitrate etc to achieve smaller files?... have a play.

I may be able to add additional "defaults" to allow users to more easily set this up... just let me know what works for you.

What I may end up doing is creating sub-sections for [Transcoder], so that you can specify different transcoding options for different categories... but that will require some major-ish changes...

clinton-hall commented 10 years ago

Do yourself a favour and download the latest ffmpeg http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20140916-git-b76d613-win32-static.7z

I don't believe the old version has any issues... But during testing I updated and this is the version I tested with... So I know this version does work.

thesatman commented 10 years ago
A problem that I have mentioned earlier. In CP you choose a Usenet download. In SABnzbd you see the download progressing. Once downloaded it disappears from the download list, does not show in the history list. Gets processed and ends up in the correct movie folder. All OK, except is not showing in SABnzbd history list.
What do you need from log file?
 

On Friday, September 12, 2014 04:29 PM CEST, Clinton Hall <notifications@github.com> wrote:
 

Look at
[Torrent]
delete_Original = 1
Interesting observation with the line break... I can't reproduce...
So one movie will work, but the second will fail without any intervention? Or did you open the config file between movies.
What editor? As a rule, don't use notepad.... Try wordpad or notepad++
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-55410844
clinton-hall commented 10 years ago

Ok.. check your SABnzbd settings. to ensure you don't have it set to purge histroy. Also, in CouchPotato, settings, Downloaders, SABnzbd, Remove NZB should be disabled.. if enabled, yes, this will delete from history.

Also, when using these scripts you need CouchPotato, settings, renamer, run_every = 0. After changing this you need to restart CouchPotato.

thesatman commented 10 years ago
Thx. There was a reason why I checked "Remove NZB" but can't remember why... Well, Let's if something else got broken now ;o) ...

Playing with SickRage now. I'll keep you posted.

Just need to say Clinton-Hall, you did a hell of a job with NzbToMedia. This piece of addon for SABnzbd//CP//SR-SB can handle about anything !!

Request: For those using user authentication in Plex, the "Plex library update" command does not work. CP and SR-SB do not support this feature. So I needed to disable Plex warnings to avoid unwanted errors in my log files. Any chance you can bake this into your script?
 

On Saturday, September 20, 2014 03:26 PM CEST, Clinton Hall <notifications@github.com> wrote:
 

Ok.. check your SABnzbd settings. to ensure you don't have it set to purge histroy.
Also, in CouchPotato, settings, Downloaders, SABnzbd, Remove NZB should be disabled.. if enabled, yes, this will delete from history.
Also, when using these scripts you need CouchPotato, settings, renamer, run_every = 0. After changing this you need to restart CouchPotato.
---
Reply to this email directly or view it on GitHub:
https://github.com/clinton-hall/nzbToMedia/issues/545#issuecomment-56267787
clinton-hall commented 10 years ago

I can look at adding plex notification. So you are saying you need plex notification (with a Plex library update command) to be called after the files have been renamed/moved by SB/CP? You also need this to support user authentication?

clinton-hall commented 10 years ago

created a new issue... this one is getting far too long ;)

thesatman commented 10 years ago
That is correct. Remember, default it is already implemented in CP and SB/SR. But this works only without user authentication. When using user authentication for devices on your local network, Plex won't updated since the update command is missing the Plex username and pasword (and CP/SB/SR have no entry field for username+pasword). So in this case I would un-check this default option in CP/SB/SR and activate the "advanced plex notification" in NzbToMedia.