INTERACT FORUM
More => Old Versions => Media Center 15 (Development Ended) => Topic started by: MP101User on May 13, 2010, 04:34:53 pm
-
Hi everyone,
After doing everything I need on my audio, I'm rolling my sleeves up and sorting out the mess that is my photo directory.
As a test, I've taken a small batch of jpegs and uploaded them to Flickr via MC15.0.32
Most of them have multiple keywords, semicolon delimited. If a photo has the keywords "Me; Bloater; Dogging" I chose the 'Use Keywords As Tags' option when I upload it to Flickr.
Flickr's tags are space delimited and in the resulting photo's tag field I see Me Bloater Dogging "Me Bloater Dogging" which results in the photo having four tags:
- Me
- Bloater
- Dogging
- MeBloaterDogging
I don't want this last tag. Is there an option, or something I'm doing wrong?
The same problem was noticed in MC14: http://yabb.jriver.com/interact/index.php?topic=55129.0
Thanks for any assistance,
M.
-
Just a little bump, as I'm not uploading anything via MC15 at the moment.
Would initially like to know if anybody else gets this problem.
Thanks,
M.
-
Ok, one more bump for a week, just to see if there's anybody else using MC to upload pics to Flickr.
If not, could somebody point me to an alternative that they use.
I want to preview some jpgs, add some tags and upload those pictures, with tags, to Flickr.
Flickr's own uploader is the closest I've come. It's nowhere near as user friendly and slick as MC, but it does tag properly.
Anything else I should look at?
Thanks,
M.
-
Flickr keywords get sent to the server like:
"keyword one", "keyword two", "keyword three"
However, it looks like it can send something like:
"keyword one", "keyword two", "keyword three",
Maybe the trailing comma confuses the server? We'll change this in build 121 and later.
Please let us know if it helps. Thanks.
-
... and uploaded them to Flickr via MC15.0.32
It would be good to update that. It's pretty old.
-
It would be good to update that. It's pretty old.
Looks like I'll be doing just that when build 121 comes out.
I've been using MC for a while and audio-wise it did everything I wanted quite some time ago. Would love it to be able to organise my photos too...
M.
-
Did anyone check if Image Resize values set in MC are honored by Flickr?
http://yabb.jriver.com/interact/index.php?topic=59488.0 (http://yabb.jriver.com/interact/index.php?topic=59488.0)
-
Now using 15.0.130 and the problem seems to have changed.
Uploaded a file with the tags "Fair" and "Sally".
The Flickr picture has only two tags now :)
But those tags are "Fair" and "Sally Fair Sally" :(
Great to have some progress though. Thanks for taking the time to look at it.
Happy to send an example pic through if you can't replicate.
Cheers,
M.
-
Would you be willing to use Fiddler (http://www.fiddlertool.com) to capture what is sent on upload to Flickr?
I would expect:
"Fair", "Sally"
I'm not sure why that would make the server unhappy, but it would be good to verify that the text above is really what is being transmitted on your machine.
Thanks!
-
Here's (I hope) the relevant bit of Fiddler2
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Content-Disposition: form-data; name="tags"
"Fair", " Sally"
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Which produces this in flickr
Tags (add a tag)
* Fair
* Sally Fair Sally
View photos from you or from everyone
Looks perhaps like I should be posting this on a flickr board?
M.
-
I got a private message about Fiddler, and thought the response might be generally useful.
In Fiddler, each request to any server gets listed in the "Web Sessions" list on the left of the program.
When you do a Flickr upload, you should see an entry go to the URL:
http://api.flickr.com/services/upload/
When you click on it, you can click the "Inspectors" tab on the right. At the top is the request. At the bottom is the response.
In the request, the Headers and TextView tabs will have the data we sent to Flickr.
Hopefully you can find Sally or Fair in it.
Thanks for digging into this.
-
I bet the issue is keywords with leading white space.
It looks like the Flickr uploader (our code) isn't properly trimming white space around delimiters in the keywords field, so we send:
"Fair", " Sally"
And it should be:
"Fair", "Sally"
Look for a change to this in build 133 and later.
-
Thanks for the speedy response!
I checked my tags and MC15 consistently does this, regardless of the combination of tags I pick. And "Sally" doesn't appear as " Sally" anywhere else.
I think MC15 is adding the white space itself.
I will keep an eye open for 133.
M.
-
Tested in 15.0.136
Photo with these tags:
Bournemouth
Holiday
Max
gets uploaded to Flickr and has these tags:
Bournemouth
Holiday
Max Bournemouth Holiday Max Beach
This last keyword doesn't appear on any of my photos!
However, the photo is of a beach so either:
(1) The image recognition tagging routine surreptiotiously sliupped into the MC code is working well, or
(2) This photo used to have a tag of Beach and it is still there somewhere even though I've deleted it?
Or an option (3) that I haven't thought of.
Obviously the uploading code change has done something so thanks for spending time on this.
If I can do anything to help, please let me know!
M.
-
Do you mind trying the Fiddler sniff again, and posting the results?
I'm stumped. Perhaps the line feed format makes a difference?
Thanks.
-
I don't mind at all. Makes me feel like a developer - and that means I can dream about driving a Lamborghini and bedding expensive twin prostitutes whilst high on coke every night...
Here's the relevant bit - I think:
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Content-Disposition: form-data; name="tags"
"Mark", "Martha", "Zoo"
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Here's a caption bit, but I don't have captions. Could this be a problem?
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Content-Disposition: form-data; name="description"
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
Content-Disposition: form-data; name="tags"
"Mark", "Martha", "Zoo"
----------ieoau._._+2_8_GoodLuck8.3-ds0d0J0S0Kl234324jfLdsjfdAuaoei-----
I'm not surprised you're stumped. Looks fine to me. Want me to send you the pic?
M.
(PS. When I understand what a "line feed format" is, do I get my prostitutes?)
-
I don't mind at all. Makes me feel like a developer - and that means I can dream about driving a Lamborghini and bedding expensive twin prostitutes whilst high on coke every night...
It's like a rap video here at JRiver.
As for the problem, look for a fix in build 138 and later. The tags aren't supposed to be comma delimited, just space delimited. I guess the commas used to work, but Flickr must have changed.
Thanks a lot for all your help.
-
Tested on v142 and all is good.
Thank you so much for your attention on this one! Really apreciated.
M.