Search found 140 matches

by Rigido
Tue Feb 12, 2008 7:46 am
Forum: PediaTalk
Topic: [DVDpedia] What do you enter on the "studio" field
Replies: 2
Views: 5376

Ciao Nora, I just called a friend of mine that worked on a DVD store. He told me that there are three steps: the movie production studio, the movie distribution for cinemas (it could be different from country to country) and finally DVD distribution studio. He told me also that the best thing would ...
by Rigido
Mon Feb 11, 2008 6:18 pm
Forum: PediaTalk
Topic: [DVDpedia] What do you enter on the "studio" field
Replies: 2
Views: 5376

[DVDpedia] What do you enter on the "studio" field

I think that studio field is for the production studio but as I found a website that has both MOVIE production studio (i.e. Warner) and DVD production studio (i.e. Warner Home Video). What should I put on the field? :?:
by Rigido
Mon Feb 11, 2008 4:04 pm
Forum: Feature Requests
Topic: DVDPedia: Corrections and additions to formats under "S
Replies: 6
Views: 7358

While Conor and other developers think on this I come to a an Italian site I'm writing a plugin for and they put this for the Audio Format: Formato audio: 5.1 Dolby Digital: Italiano Inglese Tedesco 5.1 DTS: Italiano Tedesco 5.1 PCM: Inglese Now I have to think how to put this on DVDpedia, writing p...
by Rigido
Wed Feb 06, 2008 8:08 am
Forum: Feature Requests
Topic: Bento response?
Replies: 8
Views: 9503

Conor wrote:No it can't, but it still a cataloging application.
Does it have an underlying programming language like VBA (Visual Basic for Applications) in Access?
by Rigido
Wed Feb 06, 2008 6:20 am
Forum: Feature Requests
Topic: Bento response?
Replies: 8
Views: 9503

Maybe I didn't understand what Bento is but how could it "fight" with Pedias?
I mean, Pedias have plugins and can download info from internet just using UPC/EAN codes...can Bento do that?
by Rigido
Tue Feb 05, 2008 7:37 pm
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Ciao Conor...you've got mail... ;)
by Rigido
Tue Feb 05, 2008 5:50 am
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Conor wrote:I have to update the constant.h but the real key for credits is just "credits" without the "Set", sorry about that old information. It should be:

Code: Select all

[returnData setValue:creditsArray forKey:@"credits"];
Do I have to change the constant.h on my project too?
by Rigido
Mon Feb 04, 2008 6:51 pm
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Here I am...again! :) First I would like to ask what do you think about assumptions (hope the online dictionary works well). I mean that I put on the plugin some code to convert video format to uppercase (so we will always have PAL and NTSC) and even to convert to uppercase media type if string leng...
by Rigido
Mon Feb 04, 2008 5:50 pm
Forum: PediaTalk
Topic: [Italiano] Translating some technical terms
Replies: 2
Views: 4912

Sono l'unico in Italia ad utilizzare DVDpedia? :D
by Rigido
Mon Feb 04, 2008 5:51 am
Forum: PediaTalk
Topic: [Italiano] Translating some technical terms
Replies: 2
Views: 4912

[Italiano] Translating some technical terms

Hi Nora, I'm writing here hoping that some other Italian users will read and write their thoughts. Normally I use operative system and programs in English so there are some terms that I would not translate in Italian. Quindi chiederei agli utenti italiani cosa pensano riguardo la traduzione di: - Fi...
by Rigido
Fri Feb 01, 2008 10:40 am
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

That's why you wrote *pedias and I just wrote small VisualBasic routine! :( I was going for the while loop in order to remove ALL of the occurrences of a given string and probably I didn't find this method because i was looking on the NSString class (hope I'm using right terms). What do you think on...
by Rigido
Fri Feb 01, 2008 8:11 am
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Do you think that something like the following could work? NSString *wrongString = @"\\t"; //I think I have to escape \t NSPredicate *myPredicate= [NSPredicate predicateWithFormat:@"CONTAINS %@", wrongString]; while ([myPredicate evaluateWithObject:stringToClean]) { remove wrongS...
by Rigido
Fri Feb 01, 2008 7:40 am
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Ciao Conor, thank you for the quick fix. Yesterday I took a look at the removePrefixandSuffixSpace function and I saw that you remove wrong characters only if they are at the beginning or at the end of the string, so I tried to make a new function that will remove \t and \n (I thought to remove even...
by Rigido
Thu Jan 31, 2008 9:18 am
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

To the removePrefixandSuffixSpace: method you should add the remove the tab as well as part of the if statement add: || [stringToClean hasPrefix:@"\t"] and || [stringToClean hasSuffix:@"\t"] The region and the video format is being set to the default, it's a bug I need to fix. I...
by Rigido
Wed Jan 30, 2008 6:55 pm
Forum: PediaTalk
Topic: Writing a plug-in
Replies: 25
Views: 32948

Thank you, would you explain why this piece of code doesn't seem to work? //Region NSString *region = [results stringBetween:@"Codifica " and:@"</font>"]; // region section region = [region stringBetween:@">" and:@"<"]; // cut to only the name region = [self r...