Help with mp3

I am working on a site for a client.  She has mp3s on her site. She has asked me to change out the mp3 on one of the pages for a new mp3 that I downloaded from Amazon.  The thing is when I swap out the file name of the mp3 in the code, it will not play.  I can swap out the file name for existing mp3s she has on her site and they play fine.  I'm not understanding why the new downloads will not play.  I can play it in the file folder with no problem.  Here is the existing code:
<object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3.swf" width="200" height="20">
            <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3.swf" />
            <param name="bgcolor" value="#ffffff" />
            <param name="FlashVars" value="mp3=http%3A//www.pheasanthollowboxers.com/xmas2.mp3&amp;loop=1&amp;autoplay=1&amp; volume=75" />
          </object>
All I'm doing is changing the name xmas2.mp3 to the new song name.  I'm stumped...Help!

Flash players need SWF files to play.  Simply swapping one media file for another doesn't usually work because the SWF was coded to invoke the old media file.
Moving ahead, I suggest switching from Flash which is not well supported to an HTML5 media player that works in all devices -- including iPhone, iPad, iTouch, Androids, etc...
If you use autoplaylist.php, you can swap media very easily by uploading new files to the designated media folder on your server. 
See Pickle Player for details
http://www.pickleplayer.com/
Nancy O.

Similar Messages

  • Newbie -- help with mp3s please!

    Hi Everyone,
    First, thank you all for the helpful topics and answers on this forum -- everyone seems so helpful.
    I'm new to iWeb and have almost finished my friend's website -- www.willmaranto.com. He's a musician and obviously needs music on his site. I've downloaded Wimpy player and am trying to set up, but I don't know where to upload the mp3s to. I'm assuming this would be the same no matter what html snippet related player I'd use, but I can't figure it out. Any help or advice would be greatly appreciated! Also, I'm having a few issues with links in the menu bar not working, I don't know what to do about that.
    Thanks!
    Kerry

    Have a look at this section of iWeb for Musicians .....
    http://www.iwebformusicians.com/MusicPlayers/Players.html
    How and where you upload the music files will depend on whether you are publishing to MobileMe or another server - which?

  • Zen Vision M - help with mp3 sound quality - decreases after trans

    I use the Media Explorer to transfer songs from cd to the player. After?recently upgrading my OS to the XP service pack 2 (even though I don't know if this has anything to do with it), the sound quality of the mp3's has decreased when playing back on the player. Sound is real tinny. I checked the settings and?it's set to the highest quality. I always keep it at that and never change it. What am I missing here?

    Check the transfer settings on WMP, it will often override and convert content when you transfer it even when you don't want it to.
    Plug in your ZVm and wait for it to be recognized by your computer.Run Windows Media Player(in WMP)Tools->OptionsClick on "devices" tab (You should see your ZVM displayed in list)Click your ZVM in the list, and select propertiesClick the Quality TabChaing the settings from "Automatic" quality detection to manual and set alll the settings to the highest quality. Then give your transfers a try again.

  • Hi i need help with my mp3 flash player

    Hi i need help with my mp3 player, i wan't to add pause button..can you help me?
    i created button i added btn_pause and it won't work.
    function soundStatus(){
              var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded() / _root.sound_mc.sound_obj.getBytesTotal();
              _root.loader.loadBar._width = amountLoaded * 260;
              duration = _root.sound_mc.sound_obj.duration;
              position = _root.sound_mc.sound_obj.position;
              _root.playHead._x = position / duration * 272 + 5;
    btn_play.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.songStarter(songfile[song_nr]);
    btn_pause.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.pause();
    btn_stop.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == songfile.length-1) ? _global.song_nr=0 : _global.song_nr++;
              _root.sound_mc.songStarter(songfile[song_nr]);
    btn_rev.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == 0) ? _global.song_nr=songfile.length-1 : _global.song_nr--;
              _root.sound_mc.songStarter(songfile[song_nr]);
    <moved by mod from as3 - kglad>


    function soundStatus(){
              var amountLoaded = _root.sound_mc.sound_obj.getBytesLoaded() / _root.sound_mc.sound_obj.getBytesTotal();
              _root.loader.loadBar._width = amountLoaded * 260;
              duration = _root.sound_mc.sound_obj.duration;
              position = _root.sound_mc.sound_obj.position;
              _root.playHead._x = position / duration * 272 + 5;
    btn_play.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.songStarter(songfile[song_nr]);
    btn_pause.onRelease = function() {
              clearInterval(timeInterval);  // you should re-set this interval when the unpause button is clicked
             // _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop()
    btn_unpause.onRelease=function(){
    this._parent.sound_mc.sound_obj.start(position/1000);
    btn_stop.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              this._parent.sound_mc.sound_obj.stop();
    btn_fw.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == songfile.length-1) ? _global.song_nr=0 : _global.song_nr++;
              _root.sound_mc.songStarter(songfile[song_nr]);
    btn_rev.onRelease = function() {
              clearInterval(timeInterval);
              _root.timeDisplay_txt.text = "00:00/00:00";
              (song_nr == 0) ? _global.song_nr=songfile.length-1 : _global.song_nr--;
              _root.sound_mc.songStarter(songfile[song_nr]);

  • I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980's and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my

    I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980’s and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my own folder and file naming conventions. I currently have over 23,000 images of which around 60% are scans going back 75 years.  Since I keep a copy of the originals, the storage requirements for over 46,000 images is huge.  180GB plus.
    I now have a Macbook Pro and will add an iMac when the new models arrive.  For my photos, I want to stay with Photoshop which also gives me the Bridge.  The only obvious reason to use iPhoto is to take advantage of Faces and the link to iMovie to make slideshows.  What am I missing and is using iPhoto worth the effort?
    If I choose to use iPhoto, I am not certain whether I need to load the originals and the edited versions. I suspect that just the latter is sufficient.  If I set PhotoShop as my external editor, I presume that iPhoto will keep track of all changes moving forward.  However, over 23,000 images in iPhoto makes me twitchy and they are appear hidden within iPhoto.  In the past, I have experienced syncing problems with, and database errors in, large databases.  If I break up the images into a number of projects, I loose the value of Faces reaching back over time.
    Some guidance and insight would be appreciated.  I have a number of Faces questions which I will save for later. 

    Bridge and Photoshop is a common file-based management system. (Not sure why you'd have used ACDSEE as well as Bridge.) In any event, it's on the way out. You won't be using it in 5 years time.
    Up to this the lack of processing power on your computer left no choice but to organise this way. But file based organisation is as sensible as organising a Shoe Warehouse based on the colour of the boxes. It's also ultimately data-destructive.
    Modern systems are Database driven. Files are managed, Images imported, virtual versions, lossless processing and unlimited editing are the way forward.
    For a Photographer Photoshop is overkill. It's an enormously powerful app, a staple of the Graphic Designers' trade. A Photographer uses maybe 15% to 20% of its capability.
    Apps like iPhoto, Lightroom, Aperture are the way forward - for photographers. There's the 20% of Photoshop that shooters actually use, coupled with management and lossless processing. Pop over to the Aperture or Lightroom forums (on the Adobe site) and one comment shows up over and over again... "Since I started using Aperture/ Lightroom I hardly ever use Photoshop any more..." and if there is a job that these apps can do, then the (much) cheaper Elements will do it.
    The change is not easy though, especially if you have a long-standing and well thought out filing system of your own. The first thing I would strongly advise is that you experiment before making any decisions. So I would create a Library, import 300 or 400 shots and play. You might as well do this in iPhoto to begin with - though if you’re a serious hobbyist or a Pro then you'll find yourself looking further afield pretty soon. iPhoto is good for the family snapper, taking shots at birthdays and sharing them with friends and family.
    Next: If you're going to successfully use these apps you need to make a leap: Your files are not your Photos.
    The illustration I use is as follows: In my iTunes Library I have a file called 'Let_it_Be_The_Beatles.mp3'. So what is that, exactly? It's not the song. The Beatles never wrote an mp3. They wrote a tune and lyrics. They recorded it and a copy of that recording is stored in the mp3 file. So the file is just a container for the recording. That container is designed in a specific way attuned to the characteristics and requirements of the data. Hence, mp3.
    Similarly, that Jpeg is not your photo, it's a container designed to hold that kind of data. iPhoto is all about the data and not about the container. So, regardless of where you choose to store the file, iPhoto will manage the photo, edit the photo, add metadata to the Photo but never touch the file. If you choose to export - unless you specifically choose to export the original - iPhoto will export the Photo into a new container - a new file containing the photo.
    When you process an image in iPhoto the file is never touched, instead your decisions are recorded in the database. When you view the image then the Master is presented with these decisions applied to it. That's why it's lossless. You can also have multiple versions and waste no disk space because they are all just listings in the database.
    These apps replace the Finder (File Browser) for managing your Photos. They become the Go-To app for anything to do with your photos. They replace Bridge too as they become a front-end for Photoshop.
    So, want to use a photo for something - Export it. Choose the format, size and quality you want and there it is. If you're emailing, uploading to websites then these apps have a "good enough for most things" version called the Preview - this will be missing some metadata.
    So it's a big change from a file-based to Photo-based management, from editing files to processing Photos and it's worth thinking it through before you decide.

  • Help with Multiple libraries and one storage location for files

    I cannot get an answer to this question anywhere and was really hoping that The [H] would be able to help.
    Here is my current set up that allows my wife and I to have completely independent libraries and ratings, but use the same files:
    -Shared folder with MP3s on a network drive.
    -Two PCs, each with it's own Ipod associated to it with individual libraries but all pointing to the same network share for MP3 Files.
    -Each PC is using the SAME Itunes account for downloads.
    -Each account has it's own library folder also on a network share.
    Now to my question(s)/problem with downloaded content:
    (1) Is there any way to have a file that is downloaded from Itunes be automatically placed in a shared location accessible to both Libraries? (Say if I download the latest Jack Johnson album, can it automatically show up in my wife's library and vice versa?)
    (2) Is there any way to share the album artwork versus having two copies of everything(one for each library)?
    So my goal is to have two libraries with a central location for ALL files, including anything downloaded from Itunes by each individual user. Is this possible?

    Have your wife transfer all purchases from the iPad into iTunes, backup her iPad and then sync with iTunes. Everything ... All media and other content will be available in that iTunes library and she will have a current backup.
    Assuming that your son will still be sharing your wife's Apple ID (he is too young to have one of his own) .... When you set up his iPad, restore the iPad from your wife's backup and then select only the content that you want your son to have on his iPad in the iTunes library and then sync that iPad with iTunes.
    The game progress is stored in the backup and should transfer onto his device when you restore from your wife's backup. You can always delete any content (apps, movies, music) that you don't want your son to have on the iPad, if you missed it when you synced with iTunes after setting the device up for him.
    You can set your sync preferences - any way that you want to - for both devices and still use the same iTunes library for both iPads. So ... Yes you can sync any apps that you want to his iPad and any apps that your wife wants to her iPad. You just need to restore your son's iPad from your wife's backup in order to get his game progress onto his iPad.
    In case you need these....
    Transfer purchases.
    http://support.apple.com/kb/HT1848
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    Remember to have your wife backup her iPad just before you restore his iPad from the backup so that his most recent progress will be available in the backup.

  • Bug with MP3 tags & full-resolution photo storage...

    My birthday was last week and I got a new iPod classic 120 gb......
    I am a music (67 gb) and photo buff (22 gb)......and I am having trouble with each. I am using the XP box to do the syncing, since my wife's iBook doesn't have enough storage space to hold all of our photos and MP3s.
    1) Music...... for xmas and my birthday I got 7 new CDs.... I ripped all 7 into iTunes prior to syncing my iPod for the first time and all 7 work perfectly on my family's 3 computers (laptop running OS X 10.4.11, laptop running Ubuntu, and an old Windows XP box that I use as a file server). Yet they all don't show up correctly on the iPod.....
    a) +Slumdog Millionaire+ soundtrack shows up in iTunes with each artist for each track listed correctly....yet on the iPod all songs are under "Various Artists"
    b) +The Best of Clifford Brown+ & +The Juno sountrack+ don't show up at all on the iPod even though they register correctly in iTunes
    c) Charles Mingus' +Mingus Ah Um+ & The Soundtrack for the movie Once.......shows up under album view on the iPod with "Charles Mingus" listed as the artist, but does not show up under Artist view.
    d) The other two CDs work normally.
    I ripped all of these CDs at the same time. They all work perfectly in iTunes and in Amarok on my laptop running linux. Why won't they show up correctly on my iPod? It is only these new CDs, the rest of of my giant library synced perfectly. I deleted the files and restored the iPod and the MP3s on the desktop from my back-up but that did nothing.
    What is causing this? Should I re-rip the original CDs?
    2) Photos.....I think this is just an Apple thing....but I thought I'd ask....I take LOTS of pics.....my pictures all synced up perfectly with my iPod. I selected the option to upload the full resolution photos as an added redundant back-up since i have the extra space on the iPod......but iTunes didn't take my existing file structure (each folder is an album)...it dumped my 20,000 plus photos into a single folder for March 15th (The day of the original sync) in the iPhoto style file system. The tags are all intact with the correct date, but iTunes didn't read them.
    I know this is a personal preference thing.....but I stopped using iPhoto exclusively because it made backing up my photos too cumbersome between different operating systems. I've always found it ironic that it is easier to illegally share copyrighted MP3s out of iTunes then to share non-copyrighted family pics out of iPhoto. It seems my iPod is forcing me back into the iPhoto file system. Is there a way to get iTunes/iPod to just copy my existing file structure so that I can navigate through album folders rather then the giant mass of photos.

    Shawn, the issue with the music is likely due to the fact that the CDs in question are compilations (or at least marked as compilations in iTunes).
    When an album is labeled as a compilation, the iPod will not list its contents under the artist, instead, you need to enable compilations on the iPod and look there. It will also place the album art for these tracks at the end of Coverflow.
    You can undesignate tracks as compilations by right clicking the tracks, choosing "Get Info" and go to:
    Options tab (if you are highlighting multiple tracks)
    Info tab (if you are highlighting single tracks)
    I can't help with your photo issue (I only have music on my iPod), though you are probably correct that this is just the way Apple has chosen to file the photos.

  • Can you help with rematching file names

    After a computer crash needed to reload my library. When doing this I accidently clicked the option to add track numbers to song names.
    Later I was able to locate my iTunes XML from my old PC, however many of the songs (5000 out of 6000) no don't match because the original song name has been changed since my stupid error caused the files names to get the song number in front of them.
    Anybody have any tips for matching the filenames back up. In my original library some files had track numbers in front and some did not. How can I match them back up. I'm comfortable programming and modifying the iTunes XML but I can't figure out a good way to list out the contents of my hard drive to do the actual matching.
    Tony

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • I need help with XML Gallery Fade in out transition. somebody please help me :(

    I need help with XML Gallery Fade in out transition. somebody please help me
    I have my post dont want to duplicate it

    The problem doesn't lie with your feed, although it does contain an error - you have given a non-existent sub-category. You need to stick to the categories and sub-categories listed here:
    http://www.apple.com/itunes/podcasts/specs.html#categories
    Subscribing to your feed from the iTunes Store page work as such, but the episodes throw up an error message. The problem lies with your episode media files: you are trying to stream them. Pasting the URL into a browser produces a download (where it should play the file) of a small file which does not play and in fact is a text file containing (in the case of ep.2) this:
    [Reference]
    Ref1=http://stream.riverratdoc.com/RiverratDoc/episode2.mp3?MSWMExt=.asf
    Ref2=http://70.33.177.247:80/RiverratDoc/episode2.mp3?MSWMExt=.asf
    You must provide a direct link to the actual mp3 file. Streaming won't work. The test is that if you paste the URL of the media file (as given in the feed) into the address bar of a browser it should play the file.

  • Help with Errors please!

    Hi, I'm building a Flash website.
    I've used frames with names to contain the different 'pages'
    of the site. On the frame called 'SVHS1' I've built an XML mp3
    player with buttons and a volume slider.
    I'm having a couple of problems with this section of the
    site.
    Firstly: when I 'test movie' and navigate to the mp3 player
    section it all works fine, the mp3s load correctly, the playback
    controls work fine, and the volume slider does what it's supposed
    to do. But if I've used the volume slider to adjust the volume (and
    only then) and then navigate to the next frame 'SVHS2' (or any
    frames that are later in the main timeline) I get multiple
    occurrences of the following error in the output pane:
    TypeError: Error #1009: Cannot access a property or method
    of a null object reference.
    At PSPWebsite1_fla::MainTimeline/adjustVolume()
    I understand (from reading other posts/help etc.) in
    principle what is causing this, but my knowledge of AS3 is too
    limited to know exactly what is wrong with my script or how to fix
    it.
    Secondly: if I press the stop button on my mp3 player and
    then navigate to another frame (any frame before or after
    ‘SVHS1’) the site works fine, and the mp3 player works
    perfectly if I go to that frame again. But if I navigate to another
    frame without first stopping the song it continues to play even
    though I’m not on the mp3 player frame, and if I go back to
    the mp3 player before the song has finished it starts playing
    automatically from the beginning of the first song in the XML list
    again and simply doubles up the sound, which is horrible. When this
    happens the playback controls only affect the 2nd version
    (understandably).
    I think this is probably quite simple to fix, assuming that I
    have to write some script that tells the mp3 player to stop playing
    if/when the user navigates away from that frame...but I don’t
    know how to do this.
    Any help with either of the above would be much appreciated.
    The attached script is for the mp3 player frame.

    You can consider the trace function as being a "can you hear
    me now" helper (instead of an annoying tv commercial gimmick). It
    displays whatever it's told to in the same output window that you
    see that error message come up in. There are two ways I'll usually
    use it.
    I'll often end up simply using a trace("here"); as a means of
    seeing where a process is getting hung up. I gradually move that
    line of code thru what I know to be the step by step sequence of
    the code until "here" no longer shows up. It normally indicates
    that the preceding line of code is where the ball got dropped.
    In AS3, which is often a little more helpful when it trips on
    something, such as the error message you received which tells you
    there's a problem in the adjustVolume function, you can use it to
    see what element in that function is either undefined or out of
    scope.
    Place... trace(vol); ... just after the first line of code in
    that function to see if vol is a number. If it is, then you know
    that line is okay and you can move on to check the next line. If it
    isn't a number, then move the trace before that line and change it
    to... trace(volume_mc.slider_mc.x); ... and see if it is a value.
    If it isn't, then change the trace to check to see what
    trace(volume_mc); results in.... so on and so on.
    It's basically a process of working your way thru code to
    narrow down what piece is the undefined/out-of-scope (or a syntax
    error) element that is causing the problem.

  • Re: Help with Nomad Jukebox 3 and Creative Softw

    Okay I need help with the following...(bare with me!)
    First, I have a Nomad Jukebox 3. I record shows with it at concerts that allow me to record via the optical input. I currently use Creative Media Source but I don't have the pluggins to "Burn CD". I am wondering how I can go about getting these?
    Currently I can not burn these "line recordings" onto CD, and when I right click on the line recording in the Creative Media Source to find the file name there is no Properties icon that I can go to, to see the file name so I can just do a search in my computer to pull these up in my current CD burning software.
    Also, "the line recording" is one big file. What program/software do I use to splice up the individual tracks so that it won't be one long "line recording"?
    Now when I bring my music from CD or my computer to my Nomad, I've been using Creative Play Center. Do I have to use this all the time or can I use Creative Media Source? I'd rather use one or the other and not have both to deal with... I don't see any icon of my Nomad Jukebox 3 on the Media Source but there is one on the Creative Play Center.
    Okay now one more thing just to inform you that from my Creative Play Center I am converting a concert that I downloaded and it's currently in wav format. I am converting it to MP3. Now when I do that in the Play Center window it now shows me the wav and MP3 format for each individual song. That's cool that it doesn't completely erase the wav format, however when I want to download each song in MP3 format I have to go to each individual MP3 which is fine but everytime the Transfer Options Box opens which asks me the Title, Artist and Genre each time.
    Is there a way that I can just fill out the information once, so I don't have to do that for each MP3?
    Thank you for helping me understand the Creative software and helping me know what I can and can't do!

    I found the CD burning module for MediaSource hidden in the download for the Audigy soundcards, at least in the European downloads area. Take a look and if you can't find I'll have another look for it.
    To edit the file you need a WAV editor. I'm guessing Creative might bundle something with their soundcards, or you can look on the Internet and take your pick from the cheap to the mega expensi've. Audacity might do it, and it's free http://audacity.sourceforge.net/ so worth checking.
    MediaSource is the replacement for PlayCentre, but I think it just comes down to which you prefer (but they are very very similar). Note that you have to download the Nomad pack for MediaSource to get it to work with MediaSource.
    When you transfer your converted MP3 to the player it's asking you for tag data, which is vital for the Music Library on the player. You can of course edit this tag information either in MediaSource direct, or probably more optimally in a dedicated tagging program. A list of favourites are here http://www.nomadness.net/modules.php...Jukebox+Zen#00

  • Can you help with technical problems with the stereo imagry option

    can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3'

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • Help with  songs files transfer on iPod and iTouch?

    Hey guys.
    I just got an itouch recently and I need help with something but I don't really know how to describe it so I'll try my best to put it in a way for you guys to understand. Is there an option where when you plug in the iTouch into your computer, but you don't want to transfer the songs/mp3 files you already have originally on your iPod to be automatically transfer over to your itouch? Everytime when I connect the iTouch to computer it would just copy the mp3 files over to it butI don't really want that. I just want the mp3 file to stay on the iPod only.
    Thank you, QuTran

    Does it get cut off on the iPod or in iTunes (or both)?
    Does it always happen with the same songs?
    The problem may be related to the program that was used to encode those files. Do a +Get Info+ on a few of the affected songs and see if there is anything in common where is says +Encoded with+ on the Summary tab.

  • Help with downloading mu

    I am new to the technology world. I just got a Zen Stone MP3 player and I do not understand how to get the music on it. I just purchased 2 songs from iTunes and can't figure it out. Please help!!

    tbbolton,
    The Zen Stone will only work with MP3, WMA, and Audible files. Other file formats will not play on the player.
    You can follow the steps in the link below to help you transfer songs to the player.
    http://us.creative.com/getstarted/Zenstone/howtos.asp

  • Begging for help with podcast xml file

    Hey All,
    I have a podcast on iTunes.  I am hosting the xml file and podcast mp3s on a friends server so Im not using any service.  Everything is working and Ive sucessfully added 4 podcasts so far, and it shows up correctly in iTunes on my PC.
    However my podcasts do not showup correct in the iTunes store website, or on idevices.  Meaning, I number my shows 001_"NAME" 002_"NAME" etc.  Yet in the iTunes store they show up out of order.  So my last show is not at the top its at the bottom, and they are all mixed up (like 002, 001, 004, 003 instead of  4,3,2,1)  Also the publish date is the same on two of them (and not what i have in the xml file) and doesnt show up at all on the other two.  I assume this is a problem with the xml file, yet I dont see any problems with it.  But it seems odd that it all works correctly in the actual iTunes program.  Ive tried different code, but im very much a noob at it, and everything i find online is from 5 - 10 years ago or wants you to host your podcasts with their site and I dont need that. 
    Here is the link to the show on the iTunes website so you can see what i mean:  http://itunes.apple.com/us/podcast/your-reality-recap/id501295325
    If anybody can, would you mind checking out the code in my xml file and letting me know if you see anything thats causing this issue?
    I zipped the xml file and put it here:  http://www.ericcurto.com/podcast/YRR.zip
    I would be truly greatfuly for any help with this.  Ive been trying to fix this for days and dont know what else to do. 
    Thanks!
    Eric

    Your feed is at http://www.ericcurto.com/podcast/YourRealityRecap.xml (please always post the feed URL, not its contents or a copy).
    I don't see the issues you mention. The order in the Store and when subscribing is what I would expect:
    The order in the Store depends on clicking the header to the column: the default is the first one. Some of the dates are a day out - this is quite commmon and is probably a time zone issue (it may be different where you are - I'm in the UK). I don't know why you are seeing a garbled order unless you've clicked on one of the other columns in the Store.

Maybe you are looking for

  • Found a bug in mail

    Since updating to Mavericks, mail.app has a rather annoying bug. If you have your email setup to check spelling on sending, when the spelling dialogue box opens up, and editing of the origional email will automatically send the message as soon as you

  • OBIEE - table join across databases

    Hi, I want to join two tables that are in different databases. I want to join these tables on some condition and then be able to see data from both of them in the reports. Table 1 - columns A1, B1, C1 Table 2 - columns A2, B2, D2 Currently what we tr

  • Insert a page within

    Is there a way to insert a page (or pages) within a book rather than just at the end?

  • Execute Query with VBA

    Hi all, I want to do the following in my workbook. For a = 1 to 3    select case a       case 1:           Callback "ZMSPMSM01_5011'       case 2:           Callback "ZMSPMSM01_5012'       case 3:           Callback "ZMSPMSM01_5013'    end select   

  • Do iMacs come with built-in microphones?

    I have what may very well be a dumb question so apologies in advance. Do iMacs come with built-in microphones? I have a 21.5"-inch flat-screen iMac running OS 10.7.5. I recently downloaded Skype and have my very first video call scheduled for next we