INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Importing Podcasts from Itunes  (Read 1410 times)

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Importing Podcasts from Itunes
« on: October 08, 2013, 06:11:19 am »

MC doesn't seem to bring the field - release date - from Itunes. As podcasts don't usually have a track number type field without that field you can't sort them in episode order.  Is there a way to map that field to one of the MC Data fields. Description is also ignored too.   To be honest without those fields the utility is enormously reduced.

Peter Rowan
Logged

Arindelle

  • Citizen of the Universe
  • *****
  • Posts: 2772
Re: Importing Podcasts from Itunes
« Reply #1 on: October 08, 2013, 07:16:29 am »

this should help you http://wiki.jriver.com/index.php/File_Properties_(tags)

do a tagdump on your file and then you can play around with the remapping  (http://yabb.jriver.com/interact/index.php?topic=52473.msg358677#msg358677)

or post the dump here and I'll take a look at it if you want
Logged

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Re: Importing Podcasts from Itunes
« Reply #2 on: October 08, 2013, 10:38:37 am »

MP3tag shows the tag is called releasetime and is formatted like this
2012-06-11T00:00:00Z.  How would I map that to a mediacentre field. The description is a field called SUBTITLE. They are ID3v2.2 tags

Peter Rowan
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Importing Podcasts from Itunes
« Reply #3 on: October 08, 2013, 12:19:58 pm »

You can create a new use field with exactly the same name as the tag in the file.  Use the tag dump to see the name.  This method will ensure you have the tag in MC always.  The "mapping" can be achieved using auto-import rules.

Assuming it is RELEASETIME, you could then convert it to an MC internal date format with:

   ConvertDate([RELEASETIME])

and assign it to a field, such as Date, by setting the Date tag with:

  =ConvertDate([RELEASETIME])

If you don't want to create a custom field, and only want to populate some date field periodically, you can use Tag() to grab the physical tag for the occasional assignment:

  =ConvertDate(Tag(RELEASETIME))

Don't use the leading = in an auto-import rule (it is only for setting the value of a tag in the UI).

The same concept applies with SUBTITLE.  Just set an auto-import rule to set Description with the value of SUBTITLE.
Logged
The opinions I express represent my own folly.

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Re: Importing Podcasts from Itunes
« Reply #4 on: October 09, 2013, 03:23:53 am »

I have created a field RELEASETIME  (manage library fields) Using the calculation you suggest but it is not populated.  Do I have to reimport the data to make it populate.  In the calculated data field I have put ConvertDate([RELEASETIME]). Are auto import rules different to manage library?

I have now found auto import rules (under configure auto import, edit, add custom rule) and added a custom rule RELEASETIME:ConvertDate([RELEASETIME]) but it doesn't populate and MP3Tags tells me the tags are inconsistent.
I have now solved the problem of sorting by creating an expression field that process the episode name in tha name field and gives me  the episode number e.g Episode 234 gives 234 though I can't get Iff to work prorperly as there is more than one format.

Peter Rowan
Logged

peterdrowan

  • Junior Woodchuck
  • **
  • Posts: 62
Re: Importing Podcasts from Itunes
« Reply #5 on: October 09, 2013, 07:55:29 am »

I have created a field RELEASETIME  (manage library fields) Using the calculation you suggest but it is not populated.  Do I have to reimport the data to make it populate.  In the calculated data field I have put ConvertDate([RELEASETIME]). Are auto import rules different to manage library?

I have now found auto import rules (under configure auto import, edit, add custom rule) and added a custom rule RELEASETIME:ConvertDate([RELEASETIME]) but it doesn't populate and MP3Tags tells me the tags are inconsistent.
I have now solved the problem of sorting by creating an expression field that process the episode name in the name field and gives me the episode number e.g Episode 234 gives 234 though I can't get Iff to work prorperly as there is more than one format.

Peter Rowan
Logged

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: Importing Podcasts from Itunes
« Reply #6 on: October 09, 2013, 11:37:48 am »

I think you've misunderstood.

The field RELEASETIME you created must not be a calculated value, but a standard string field so that MC can have a location to read and store the value.  Once you have this field, *then* you can use it in other calculated fields or expressions.

Take small steps.  First create the field, and see if you're getting it filled.  Use Update library (from tags) on a selection of files to see if your field populates.
Logged
The opinions I express represent my own folly.
Pages: [1]   Go Up