Can I set MP3 files as "Podcast" so that I can get the blue "Unplayed" dot?

Here's my scenario: I have a whole bunch of audio files of Spanish lessons that are in MP3 format that I want to put on to my iPod. There's quite a lot of them: 82 in fact, and they're titled lesson 1, lesson 2, lesson 3, etc.
In order for me to be able to see at a glance, from one day to the next, what files I have listened to, or to be more precise, what was the LAST file I listened to and what is the NEXT file I should listen to, I was wondering if there was some way I could somehow have these regular MP3 files show up as PODCASTS?
The reason I ask this is because non-played podcasts have that little blue dot next to them that shows that they have not been played, and played podcasts don't have that little blue dot.
Obviously, if I could have my Spanish audio files as podcasts, with blue dots, then I could see instantly what is the next file I have to listen to, without having to try and remember the lesson number.
Anyone have any ideas? Thanks in advance...

Might take a little work, but you can do it be creating an RSS file for the content, dumping it on a web server, and "subscribing" to it.
* Grab an RSS file from any podcast and save it on your system.
* Edit the file, changing all the description data to something relevant (or removing it)
* For the episodes, change the file location reference from "http://..." to "file://localhost/...thefile_on_your_harddrive". This makes the RSS file only useful to someone who already has the files. It also results in iTunes duplicating the files as you subscribe and it "downloads" each episode.
You may also be able to use GarageBand '06 to make a suitable RSS file, but I haven't ever tried this.

Similar Messages

  • Unable to change my mp3 file to podcast

    I can change my individual mp3 files to podcasts in iTunes10 by setting the "Media Kind", but new iTunes 11 does not do anything. This must be a bug.
    Please fix it.

    Thank you for the link but it can't be used in Moutain Lion because Web Sharing is not available in System Preferences -> Sharing.
    I hope there are other solutions. This is really ******* me off.

  • Convert regular mp3 file to podcast?

    I regularly record radio shows on my desktop Mac and then put them on my ipod to hear later. I'm trying to find a way of marking those I've listened to on the ipod. I wondered about the possibility of making them podcast files, so that they go to the Podcast folder and get the blue-dot-unplayed/no-dot-played feature. This would give me what I want, I think - a way of managing visually on the ipod what I have and have not listened to. But how do I make a regular mp3 file 'think' that it is a podcast file? I've looked around - here and elsewhere - and it seems to involve esoteric stuff about id3 tags and particularly the pcst tag. But is there a very easy way for non-geek me to do what I want? Or even a way that doesn't involve converting to podcast files, but just marking the files on the ipod in some way as 'played'? I'd really welcome some advice from you knowledgeable guys.

    Thank you chaps: they both sound like good schemes and I'll try them.
    However, they both rely on reconnecting the ipod to the desktop machine to change the status of the played tracks: only then will they disappear as played tracks/podcasts.
    Is there not a way of marking particular tracks in a playlist on the ipod, using the ipod, so that I can see which I've played and which not? The single-star rating trick doesn't help, because you don't see that on a list of tracks. Any other ideas?

  • I have mp3 files on my iMac that I want on my iPad 2 and can't figure out how to do it. Help !

    I have mp3 files on my iMac that I want on my iPad  and can't figure out how to do it. Help !

    OK I think I have it figured out! In iTunes you must check mark the mp3 files you want on the ipad 2 then sync to the iPad , also if you have files on the iPad you want to keep they  must be checked as well or they WILL go away! That is how I lost the ones I had on the iPad in the first place.  

  • How can I prevent the open/save file confirmation window popup ? Mine is currently set for "always do this action" but I still get the popup.

    Whenever I "export" a QIF file from my bank I get a File Action confirmation window popup. I have the correct application selected and I have it selected to "open" and "always do this action" but the popup always pops.
    I have checked the applications tab and the correct application is selected.
    How can I prevent the confirmation popup window please ?

    Cheers for the reply.
    I have deleted the rdf file but no difference. I still get the opening file box popup.
    From the resetting download actions link. Both lines in the about:config are missing.
    I have also tried switching the download option for the qif file to use a csr file but that also opens the confirmation box.
    I pulled this from the rdf file
    <RDF:Description RDF:about="urn:mimetype:handler:text/x-qif"
    NC:alwaysAsk="false"
    NC:saveToDisk="false"
    NC:useSystemDefault="false"
    NC:handleInternal="false">
    <NC:externalApplication RDF:resource="urn:mimetype:externalApplication:text/x-qif"/>
    <NC:possibleApplication RDF:resource="urn:handler:local:C:\Program Files\Microsoft Money\System\msmoney.exe"/>
    </RDF:Description>
    <RDF:Description RDF:about="urn:scheme:webcal"
    NC:value="webcal">
    <NC:handlerProp RDF:resource="urn:scheme:handler:webcal"/>
    </RDF:Description>
    <RDF:Description RDF:about="urn:mimetype:externalApplication:text/x-qif"
    NC:path="C:\Program Files\Microsoft Money\System\msmoney.exe"
    NC:prettyName="msmoney.exe" />
    Not sure if that helps.
    Thanks again for the reply

  • I have a sequence on tcp that is Standard Def. I have a new set of files in High Def that match the old files. I would like to replace all the SD footage with the HD footage. Anyone know of a workflow to do this task?

    I have a sequence on tcp that is Standard Def. I have a new set of files in High Def that match the old SD files. I would like to replace all the SD footage with the HD footage. Anyone know of a workflow to do this task?

    Do a media manage of the sequence converting the files to the appropriate HD format making the clips offline.  Then simply reconnect the offline clips to the HD clips.  There may be issues in the file names, but they can usually be worked out either with the naming options in media manager or renaming your hd files.  There are many utilities that allow you to batch rename files. 

  • By which method,i can get  the no of rows in the record set?

    Does anyone help me that by which method,i can get the no of rows in the record set?
    now i use next() to check whether the next record is available or not?

    shashi_rajak wrote:
    under Practice Exercise #1 heading :
    there is a statement.
    "Now, the COUNT function does not need to retrieve all of the fields from the table (ie: employee_number, employee_name, and salary), but rather whenever the condition is met, it will retrieve the numeric value of 1. Thus, increasing the performance of the SQL statement."And have you ever tried it? Or do you simply blindly believe everything you read? And what sort of "authority" is "tech on the net"?
    P.S. A quick test on Oracle (and you must do each query at least twice throwing away the first result, as Oracle always caches things which will have an effect, and averaging the remaining attempts).
    count(*) -- 1 min 17 secs for 35,311,978 rows
    count(1) -- 1 min 19 secs for 35,311,978 rows
    Edit: And the table has 46 columns.

  • I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add info), it overwrites part of the record following it. I am using labview 6.0

    I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add or change info), it overwrites part of the record following it. I am using labview 6.0. I need to be able to insert information into the middle of a file without disturbing the data before and after

    It's hard to give more specifics without more detail, but in general you're going to need to read in the entire file, split it into three pieces (everything before the record of interest, the record itself, and everything after the record of interest), modify the record, reassemble the three pieces in proper order, and write the whole thing back to the file.Of course if the file is very large you might not want to actually implement it this way, but conceptually at least, this is what you are looking at.If this file some sort of proprietary format?Mike...PS: this type of issue is why I really like databases...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Setting focus outside a control when no other control can get the focus

    Hello
    I'd like to know if there is a way to setfocus outside of a control even if there is no other control to receive the focus.
    I have an editbox that has the focus (active) and I want to set visible to false to this control., but I cannot since it has the focus and there is no other controls that can get the focus.
    As a temporary measure I've added another editbox that I moved outside of the visible interface to which I've moved the focus. But I would like to know the proper way to do this.
    Thank you for your help.

    I think you are asking how to bring a windows form to the front.
    If not I apologize...
    The way I have done this:
    1. I created a new thread.
    2. I maxmized the window
    I set the following properties:
    ShowInTaskbar = False
    TopMost = True
    Focus()
    BringToFront()
    In all my testing I needed the window to be maximized, if it wasn't B1 stayed on top.

  • I'm trying to convert a pdf file to word and I continue to get the message "An error occurred while signing in".  I believe I'm properly signed in, I can see my account, etc.  Any suggestions?

    I'm trying to convert a pdf file to word and I continue to get the message "An error occurred while signing in".  I believe I'm properly signed in, I can see my account, etc.  Any suggestions?

    Hi tkam,
    It sounds as though you just need to install the latest Reader update. Please choose Help > Check for Updates in Reader and install the latest update. An update to Reader 11.0.07 resolves this sign-in issue.
    Let us know how it goes!
    Best,
    Sara

  • I'm trying to convert a pdf file to word and I continue to get the message "An error occured while signing in".  I believe I'm properly signed in, I can see my account, etc.  Any suggestions?

    I'm trying to convert a pdf file to word and I continue to get the message "An error occurred while signing in".  I believe I'm properly signed in, I can see my account, etc.  Any suggestions?

    Hi tkam,
    I think I may have just the answer you're looking for. If you're converting from within Adobe Reader, please choose Help > Check for Updates and install any available updates. This error was resolved in the most recent Reader update. (You can also try signing in directly via the ExportPDF website at https://cloud.acrobat.com/exportpdf.)
    Please let us know how it goes.
    Best,
    Sara

  • I'm trying Facetime with my Mac Mini with OS 10.7.5 and an Acer H243HX monitor (w/ HDMI, USB). I can get the webcam-in , but even with settings in Sounds set to have the input come through the Acer monitor, I still cannot get any sound input into the Mac.

    I'm trying Facetime with my Mac Mini with OS 10.7.5 and an Acer H243HX monitor (w/ HDMI, USB). I can get the webcam-in , but even with settings in Sounds set to have the input come through the Acer monitor, I still cannot get any sound input into the Mac. Any suggestions or ideas? Thanks!

    I'm trying Facetime with my Mac Mini with OS 10.7.5 and an Acer H243HX monitor (w/ HDMI, USB). I can get the webcam-in , but even with settings in Sounds set to have the input come through the Acer monitor, I still cannot get any sound input into the Mac. Any suggestions or ideas? Thanks!

  • I am having problems using mov files imported into a project. I get the message "Not rendered" in the Canvas and clip won't play. Can anyone help?

    I am having problems using mov files imported into a project. I get the message "Not rendered" in the Canvas and clip won't play. Can anyone help?

    When clips won't play without rendering in the Timeline, it usually means that the clip's specs don't match the Sequence settings.
    A .mov file could be made from any number of codecs; the QuickTime Movie designation is merely a container for video files of all kinds.  Since FCE only works with the QuickTime DV codec and the Apple Intermediate Codec (AIC) natively, if your mov files aren't one of those two, you need to convert them PRIOR to importing into your FCE project.
    -DH

  • How on can get the plaback of .mov files with Redcode Codecs?

    Hi folks,
    I am not able to play the .mov files created by Red camera so..
    how one can get the playback of .mov files with Redcode Codecs?

    Well, one typically doesn't edit with any of the proxy-files the RED camera produces.  You need to convert the RED footage to ProRes.  Log and Transfer can do this, if you download and install the RED Log and Transfer plugin.  Or you might need to use RED software to convert the footage to ProRes.  But those Red proxy files won't import via log and transfer, and are NOT editable in FCP.  Gotta convert to ProRes.

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

Maybe you are looking for

  • Random cursor freeze mac book pro, 10.6.8 ?

    What causes this problem?

  • Entering Tax Only Invoice in AP

    Hi Guys, We are able to Import Invoices with Tax Only Line by Setting PRORATE_ACROSS_FLAG as N which is populated in AP LINES. Tax lines gets poulated from Payable Interface to ZX_LINES with Tax only Lines as checked. But when we are trying manually

  • ADF Query Panel with Tree Table

    I am using JDev 11g to create ADF Query Panel withTree Table. Basically it's working on data part. But on presentation part it looks awkward. The tree table's master row and child row share first row for column name ColumnMaster1   ColumnMaster2   Co

  • SDK 1.4 compilation problems

    I get the following error when I try to compile a java program in the 1.4 envt. There are no errors in 1.3 envt. home/skreddy/jsdk14/jre/lib/sparc/client/libjvm.so, because ld.so.1: xjavac: fatal: relocation error: file /home/skreddy/jsdk14/jre/lib/s

  • OWB 10.2.0.2 - Problems

    I have a repository on OWB 10.2.0.2. When I try to change something on a table I get an error about Invalid Upgrade Path. I have given the necessary permissions to the target schema and I have noticed that this happens mainly on tables with constrain