Search found 1251 matches

by kim
02 May 2016, 17:10
Forum: Help and Support
Topic: Replace output of audios.language...
Replies: 35
Views: 14420

Re: Replace output of audios.language...

htpc update: 1. I added: channels((s.'Channel(s)')*.split(' / ')*.max().max() because of e.g. "8 / 7 / 6" in one audio stream... now only 8 ? if (s.'Channel(s)' != null) { if (s.'Channel(s)_Original' != null){ channels((s.'Channel(s)_Original').trim()) } else {channels((s.'Channel(s)')*.sp...
by kim
26 Apr 2016, 22:38
Forum: Feature Requests and Bug Reports
Topic: movie fanart
Replies: 0
Views: 1612

movie fanart

fanart is mostly no language (null) // [locale.language, 'en', null] BUT if no --lang is set if will download the 'en' (English) even if poor quality and many "better" pics this is a problem because it can be a crap pic and have low "vote_average" and "vote_count" so pl...
by kim
26 Apr 2016, 18:11
Forum: Scripting and Automation
Topic: same movie with same name in 2 diff. languages
Replies: 5
Views: 2838

Re: same movie with same name in 2 diff. languages

in clean groovy file: def outputFolder = {output} println outputFolder = Script1$_run_closure5@2df3b89c It does not work or you need to "dumb it down" for me EDIT: looks like I finally got it :) thx Movies/{def nyformat = ny; def nydkformat = (n+' [DK] '+'('+y+')'); def outputFolder = outp...
by kim
26 Apr 2016, 17:42
Forum: Scripting and Automation
Topic: same movie with same name in 2 diff. languages
Replies: 5
Views: 2838

Re: same movie with same name in 2 diff. languages

{def outputFolder = new File(output ?: '.').getCanonicalFile(); def nyformat = ny; def nydkformat = (n+' [DK] '+'('+y+')'); def destfolder = (outputFolder/Movies/nyformat) as File; destfolder.exists() ? nydkformat : ny }/{fn} = Argument: C:\Windows\System32\override File not found: C:\Windows\System...
by kim
26 Apr 2016, 17:30
Forum: Scripting and Automation
Topic: Documentary series rename <episode name> ---> <series> SxE
Replies: 7
Views: 3876

Re: Documentary series rename <episode name> ---> <series> S

try the GUI under "episodes"
search for show
select the episodes
drag&drop to "rename" / "new names"
then drag&drop your files on "original files"
if format ok then rename... done
by kim
26 Apr 2016, 17:17
Forum: Scripting and Automation
Topic: same movie with same name in 2 diff. languages
Replies: 5
Views: 2838

Re: same movie with same name in 2 diff. languages

This works in amc format: {def outputFolder = new File('D:/_DoWnLoaD/Done/Scaped/Movies' ?: '.').getCanonicalFile(); def nyformat = ny; def nydkformat = (n+' [DK] '+'('+y+')'); def destfolder = (outputFolder/nyformat) as File; destfolder.exists() ? nydkformat : ny }/{fn} anyway make this work inside...
by kim
25 Apr 2016, 01:50
Forum: Scripting and Automation
Topic: -sh: !: event not found error
Replies: 10
Views: 8644

Re: -sh: !: event not found error

"No space left on device" ?
no support for xattr on device, linux or ?

write permission on share ?
by kim
24 Apr 2016, 13:11
Forum: Scripting and Automation
Topic: same movie with same name in 2 diff. languages
Replies: 5
Views: 2838

same movie with same name in 2 diff. languages

I'm trying to do this using AMC: if the new scraped path exists, then use a diff. rename format it must be something to do with ?: def dest = rename(file:files, format:format.mov, db:'TheMovieDB') or can it be done within the format only ? // best option or ? it most move all movies to their own fol...
by kim
22 Apr 2016, 18:03
Forum: Feature Requests and Bug Reports
Topic: NFO update: TV Kodi style
Replies: 14
Views: 6877

Re: NFO update: TV Kodi style

If no update coming ?
can you tell me how to get ALL info /data out in htpc, XML ?
the def i = seriesInfo
only show stuff IF i know the last part e.g. (i.firstAired)
by kim
22 Apr 2016, 17:56
Forum: Feature Requests and Bug Reports
Topic: htpc broken fanart.jpg
Replies: 4
Views: 2407

Re: htpc broken fanart.jpg

looks like it works in new rev. FileBot 4.7 (r3894)


Fixed it my self :)
OLD: int durationinMS = Integer.parseInt(s.'Duration')
NEW: BigDecimal durationinMS = new BigDecimal(s.'Duration')

Not in log because if left in all in htpc fails (no pics or nfo)
by kim
22 Apr 2016, 17:18
Forum: Feature Requests and Bug Reports
Topic: htpc broken fanart.jpg
Replies: 4
Views: 2407

Re: htpc broken fanart.jpg

Well now I tried FileBot 4.6.2 (r3966) / Java(TM) SE Runtime Environment 1.8.0_77 still get: null java.lang.NullPointerException at net.filebot.web.Artwork.matches(Artwork.java:57) at Script2$_fetchMovieArtwork_closure9$_closure30.doCall(Script2.groovy:181) at Script2$_fetchMovieArtwork_closure9.doC...
by kim
22 Apr 2016, 14:41
Forum: Feature Requests and Bug Reports
Topic: htpc broken fanart.jpg
Replies: 4
Views: 2407

htpc broken fanart.jpg

this makes all null only = NO fanart // select and fetch artwork def artwork = TheMovieDB.getArtwork(movieInfo.id, category, locale) - def selection = [locale.language, 'en', null].findResult{ l -> artwork.find{ l == it.language } } + def selection = [locale.language, 'en', null].findResult{ lang ->...
by kim
20 Apr 2016, 20:14
Forum: Feature Requests and Bug Reports
Topic: bug: {vf} is no longer working
Replies: 8
Views: 5520

Re: bug: {vf} is no longer working

Link dead:
http://www.filebot.net/#download
This package does not include the "MediaInfo and 7-Zip native libraries"
by kim
19 Apr 2016, 18:45
Forum: Feature Requests and Bug Reports
Topic: NFO update: TV Kodi style
Replies: 14
Views: 6877

NFO update: TV Kodi style

pls add support for the new stuff If you export a TV show you will get something like this: banner.jpg, fanart.jpg, poster.jpg, season-all-poster.jpg tvshow.nfo , Family.Guy.S10E20.Leggo.My.Meg-O.nfo Family.Guy.S10E20.Leggo.My.Meg-O-thumb.jpg ( http://thetvdb.com/banners/episodes/75978/4292744.jpg )...
by kim
19 Apr 2016, 14:03
Forum: Feature Requests and Bug Reports
Topic: Naming bug
Replies: 3
Views: 2401

Re: Naming bug

on Windows
GUI: ./ works
../ same as before
by kim
19 Apr 2016, 13:17
Forum: Feature Requests and Bug Reports
Topic: Naming bug
Replies: 3
Views: 2401

Naming bug

GUI: (CLI not testet)
If movie or show in e.g. D:\_DoWnLoaD\Done\Scaped
try format {n}/{n}
now the current folder (Scaped) NOT in new path

if folder e.g. D:\_DoWnLoaD\Done\Scaped\TV or D:\_DoWnLoaD\Done\Scaped\Movies
then path is correct
by kim
19 Apr 2016, 12:33
Forum: Feature Requests and Bug Reports
Topic: Diff TV naming support
Replies: 2
Views: 2016

Re: Diff TV naming support

sry it was the default
"def minFileSize = tryQuietly{ minFileSize.toLong() }; if (minFileSize == null) { minFileSize = 50 * 1000L * 1000L }
def minLengthMS = tryQuietly{ minLengthMS.toLong() }; if (minLengthMS == null) { minLengthMS = 10 * 60 * 1000L }"

file: 2 min. / 34MB
by kim
18 Apr 2016, 21:44
Forum: Feature Requests and Bug Reports
Topic: Diff TV naming support
Replies: 2
Views: 2016

Diff TV naming support

CLI: can't lookup this
Popeye.S1934E05.Shoein.Hosses

GUI: not 100%, but it can
by kim
16 Apr 2016, 20:16
Forum: Scripting and Automation
Topic: amc conflict override problem
Replies: 15
Views: 6370

Re: amc conflict override problem

looks like its not working
I need more ?
I can't see what I need to change (if any) in artwork file

from htpc

Code: Select all

	if (!outputFile.exists()) {
		log.finest "FROM htpc fetchMovieArtwork outputFile - Downloading $selection.url => $outputFile"
		return selection.url.saveAs(outputFile)
	}
by kim
16 Apr 2016, 20:06
Forum: Scripting and Automation
Topic: AMC advanced script options rename cover.jpg
Replies: 3
Views: 4020

Re: AMC advanced script options rename cover.jpg

Just made this work ;) put in LOCAL htpc file // fetch series banner, fanart, posters, etc fetchMovieArtwork(movieDir.resolve('movieFile.nameWithoutExtension+'.jpg'), movieInfo, 'posters', override, locale) fetchMovieArtwork(movieDir.resolve('fanart.jpg'), movieInfo, 'backdrops', override, locale)
by kim
16 Apr 2016, 12:39
Forum: Scripting and Automation
Topic: amc conflict override problem
Replies: 15
Views: 6370

Re: amc conflict override problem

"You'd have add a check if the file already exists, and not do anything if it does. Search for "saveAs" in the htpc script."

Meaning:
I need to change my htpc file only ?
I need to change my artwork file only ?
I need to change my artwork AND htpc files ?
by kim
14 Apr 2016, 20:33
Forum: Scripting and Automation
Topic: amc conflict override problem
Replies: 15
Views: 6370

Re: amc conflict override problem

"The artwork script might also benefit from a few modifications so that it doesn't re-download all the artwork when all you want is update the nfo files." I don't know how to do this from htpc maybe? copyIfPossible(movieDir.resolve('folder.jpg'), movieDir.resolve('folder.jpg')) copyIfPossi...
by kim
12 Apr 2016, 22:45
Forum: Help and Support
Topic: Replace output of audios.language...
Replies: 35
Views: 14420

Re: Replace output of audios.language...

ok, you never know if something wrong on my end

"fixed with the next revision"

meaning:
you fixed it and I need to do something ?
or you will fix it when you have time ?
by kim
12 Apr 2016, 20:22
Forum: Help and Support
Topic: Replace output of audios.language...
Replies: 35
Views: 14420

Re: Replace output of audios.language...

FileBot 4.6.2 (r3932) / Java(TM) SE Runtime Environment 1.8.0_77

Can you/anyone confirm "Actor" is broken aka missing in the movie.NFO ?
<actor>
<name>Some dude</name>
<role>characters name</role>
</actor>
by kim
12 Apr 2016, 20:19
Forum: Scripting and Automation
Topic: amc conflict override problem
Replies: 15
Views: 6370

Re: amc conflict override problem

Lets say I want to update info/data in nfo AND/OR rename (e.g. if my rename format or any data has changed) Using amc: how would you go about doing this, without 1st moving it and then have amc move it back ? In my head override means just that... override: --conflict skip (to be on the safe side) -...