• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

two questions about RSS

 
Ranch Hand
Posts: 798
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Now RSS is used in podcast which has audio "enclosure". like,

<enclosure url="voice.mp3" length="11111" type="audio/mpeg"/>

My question, may I extend the audio to video ? just like
<enclosure url="movie.avi" length="11111333" type="video/avi"/>

is this allowed ?

Another question, may I define my custom variable in "item" ? If I publish it, the other RSS reader will accept my custom item ?

Thanks.
 
Ranch Hand
Posts: 183
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Another question, may I define my custom variable in "item" ? If I publish it, the other RSS reader will accept my custom item ?



Most likely not! unless you write the reader yourself
I dont know if it would even qualify to be called RSS then.

But if the Reader does not perform validation then your RSS feed may be accepted. Looking into the src of an OS reader Informa I found that they dont perform validation. I suppose the custom variable will be ignored by it.
[ August 01, 2005: Message edited by: Rajagopal Manohar ]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic