home *** CD-ROM | disk | FTP | other *** search
/ onj1.andrelouis.com / 2015-02-07.onj1.andrelouis.com.tar / onj1.andrelouis.com / andre / podcast.inc < prev    next >
Text File  |  2009-08-09  |  2KB  |  37 lines

  1. <?php
  2. /* welcome to your new podcast with TBRN!  Podcasts allow listeners to automaticly download your knew shows to their computer or mp3 player, and listen to them on the go.  Thus, more listeners (at least to your archives) as they won't forget to download a copy.  First, however, you need to configure things.  It's quite like editing an ini file, accept that slash is a comment rather than semicolon.  Just edit the values below, and re-upload this file to your archive directory.*/
  3.  
  4.  
  5. //do you want a podcast? "yes" or "no".
  6. $dopodcast = "yes";
  7.  
  8. //what's the name of your show?
  9. $show_name = "Andre's Personal Music Directory";
  10.  
  11. // What's the home page of your show?
  12. $show_page = "http://onj.AndreLouis.COM/Andre%20Louis";
  13.  
  14. // In a few words, describe your show:
  15. $show_desc = "Welcome to my personal music site.  Here you will find tracks that I write usually for a purpose I hope you enjoy these.";
  16.  
  17. // What language is your show?  Valid languages include:
  18. // en-us (US English), en-ca (Canadian English), and en-uk (British English), and others.
  19. $show_lang = "en-uk";
  20.  
  21. // who owns copyright to your shows?
  22. //normally, this should be your name.
  23. $show_copy = "(C) Copyright 2002-2005, Andre Louis";
  24.  
  25. // email address where listeners can email you when you're off air:
  26. $show_addr = "Onj@andrelouis.com";
  27.  
  28. //What is the URL to the directory where your archives are stored?
  29. // this must end in slash.
  30. $show_url = "http://onj.AndreLouis.COM/Andre%20Louis/";
  31.  
  32. // audio format of your show:
  33. //currently set to mp3, if you upload archives in another format change this.
  34. $show_format = "audio/ogg";
  35.  
  36. /* That's it!  If you would like show notes to show up for every episode of your show, just include a text file with the same name as the mp3 file of your show.  So, if you just did My_show_no_15.mp3, the show notes for that show should be placed in my_show_no_15.mp3.txt.  The names are case sensitive.*/
  37. ?>