Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Zacca

Pages: 1 2 3 4 5 [6]
101
Support / Re: Questions for the skin
« on: October 20, 2009, 06:46:49 pm »
Can i make smaller the snapshots(screenshots) ???
I don't v find the way  :(

Heheheheheheh...find the way  :D
Code: [Select]
<screenshots cwidth="150" cheight="250"></screenshots>

102
Support / Re: Questions for the skin
« on: October 19, 2009, 07:09:27 pm »
Can i make smaller the snapshots(screenshots) ???
I don't v find the way  :(

103
Support / Bug in the skin
« on: October 18, 2009, 05:26:13 pm »
Or i'm wrong or......

The tagline and description don't take the color property
idem for all in the same section....comment and award

The customsection don't change the background color

If i put the tagline in the center of the classic skin and i open another database i take an error...out of memory

104
Scripts and Templates / Re: Zskin
« on: October 18, 2009, 05:18:29 pm »
This skin is not all what i wanted to do....
I wanted to add, near the video codec, the audio codec and the number of channel of the first stream but i failed.

A good idea to make all graphically better is to associate a picture to the codec.

Some other idea is:
To use the fields more than once
To use all the fields justify left center right

For now it's all
Thanks to you  :D

105
Scripts and Templates / Zskin
« on: October 17, 2009, 06:21:58 pm »
This is my first skin for PVD
Is a small contribute for the big big work of nostra  ;D


unzip the files into the dir /skins/movies

[attachment deleted by admin]

106
Support / Re: Questions for the skin
« on: October 14, 2009, 07:19:13 pm »
Sorry but i v another question...
What can i do to increase the space between 2 line or add a empty row ???

107
Support / Re: Questions for the skin
« on: October 13, 2009, 07:40:55 pm »
You answer too quickly but I can not work so fast  ;D
Many many thanks

108
Support / Re: Center title in the skin
« on: October 13, 2009, 05:40:33 pm »
This code will center the title field:
Code: [Select]
<column halign="center">
<title autosize="true"/>
</column>   

Note, that autosize parameter works only in view mode for edit boxes...
What do u mean for edit boxes ??
Director is an edit box ?? Seems not work

109
Support / Re: Center title in the skin
« on: October 12, 2009, 12:39:52 pm »
thanks for the reply....work fine :)

another question...
How can i add text to the skin like () for the year ??

110
Support / Questions for the skin
« on: October 10, 2009, 07:21:26 am »
Is there any way to center the <title> or another command in the skin ??
Halign="center" seems work only for fieldlabel.

111
Scripts and Templates / Re: Export audio data
« on: October 07, 2009, 06:31:30 pm »
Ok autoreplay  ;D

i v found the export for audio

{%value=audiocodec}
{%value=langs}
{%value=audiobitrate}
{%value=translation}
{%value=channels}
{%value=sampling}

112
Scripts and Templates / Export audio data
« on: October 06, 2009, 08:07:32 pm »
I don't have find any way to export audio data like number of channel and language
the only command for audio is audio codec and the output is only the codec audio  ;)

113
Scripts and Templates / Re: Another that exports xbmc
« on: October 06, 2009, 11:52:45 am »
my bad.

in main export program line should read:
<id>{%value=url template="urls.tpl" maxvalues="1"}</id>

to link to file urls.tpl which has {%value} in it
I saw the error and correct, but not work
I don't know why now it work :)

I v change the batch to scan first imdb and second the other.
I'll test it with some movie and i tell u the result

114
Scripts and Templates / Re: Another that exports xbmc
« on: October 05, 2009, 06:05:49 pm »
hi zacca,

the only way i have found is to limit the output to 1.
imdb has to be first in the list - (you may be able to order this but i haven't tested)

create a file called urls.tpl and have this in it.
Code: [Select]
{%value}

in xbmc main.ptm file have:
Code: [Select]
<id>{%value=url template="urls.ptm"  maxvalues="1"}</id>

This will limit the no of urls returned to 1. hopefully imdb will be first and gets returned.
NB: replace="http://www.imdb.com/title/<->"  to strip leading info no longer works if you use this.


{%value=url template="urls.ptm"  maxvalues="1"} don't work for me. The "URLS" don't have command "template".
anyway i have too many movie to reorder :(
I' ll wait for new version  ;D
meantime i work to export the movie flag...when i have time unfortunately  ;)

115
Scripts and Templates / Re: Another that exports xbmc
« on: October 02, 2009, 07:27:13 pm »
Tnx CAD for the replay of deazo   :)
and tnx for my replay  ;)

My problem is that i have 3 url... FILMUP for the italian description + Allmovie for the rate and IMDB for the rest
What can i do to delete the first 2 ???

Have u find some solutions to add the thumb on the actors ?? without the name of the image I can't do anything  :(

116
Scripts and Templates / Another that exports xbmc
« on: October 01, 2009, 12:55:43 pm »
First of all excuse my English but I'm Italian. I speak e little bit of english but i hope google translator do the miracle  :D
Very very very thanks to those who wrote PVD. You are my hero  ;D

This is my script for all those interested:

XBMC
Code: [Select]
%OPTIONS%
replace="&<->&amp;"
replace="<<->&lt;"
replace="><->&gt;"
filter="XML Files|*.nfo"
encoding="UTF8"
imagenameformat="%t%.tbn"
imagepath="\"%OPTIONS%
%HEAD%<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>%HEAD%
<movie>
<title>{%value=title}</title>
<originaltitle>{%value=origtitle}</originaltitle>
<rating>{%value=imdbrating}</rating>
<year>{%value=year}</year>
<plot>{%value=description}</plot>
<tagline>{%value=tagline}</tagline>
<runtime>{%value=length} minuti</runtime>
<mpaa>{%value=mpaa}</mpaa>
<playcount>{%value=count}</playcount>
<genre>{%value=genre}</genre>
<director>{%value=directors}</director>
<studio>{%value=studio}</studio>
<votes>{%value=Voti IMDB custom="true"}</votes>
<top250>{%value=Top 250 IMDB custom="true"}</top250>
<id>{%value=IMDB ID custom="true"}</id>
<poster>{%value=poster}</poster>
{%value=actors template="actors.tpl" maxvalues="10" params="full"}
</movie>

actors.tpl
Code: [Select]
%HEAD%%HEAD% <actor>
<name>{%param=name}</name>
<role>{%param=role}</role>
</actor>%FOOT%%FOOT%

My questions are:
Is there any way to export the ID of IMDB and the link of photo of the actors ???

Thanks again for everything  ;D

Pages: 1 2 3 4 5 [6]