How do I set the media kind to Podcast?

I created a new project, a podcast, recorded it, and now want to export to disk (as an MP3). But when I do so, it comes out as Media Kink "Music". How do I get it to come out as a media kind = podcast from within Garage Band?

chg2winter wrote:
How do I get it to come out as a media kind = podcast from within Garage Band?
although not "from within GB" perhaps this will help:
http://hints.macworld.com/article.php?story=20121205190850122

Similar Messages

  • How do I set the length of a podcast?

    How do I set the length of a podcast? I am using Garageband 3.0.2

    Drag the little purple left facing triangle at the top of the timeline to where you want the export to end.
    (Note, GB does impose a minimum length, but I dont' recall what that is at the moment)

  • HT1473 Can't set media kind to podcast since iTunes 11 upgrade

    I have some teaching material in mp3 format that I like to listen to on my iPhone.  Prior to iTunes 11 upgrade, I could import it into iTunes, get info, options tab, then set the Media Kind to Podcast.  This moved it from the music library into the podcast library, which allowed me to take advantage of 30 second rewind while listening, as well as remembering where I was when I left off if I didn't listen to the entire thing in one setting.
    Now that I've upgraded to iTunes 11, this no longer works.  I can still select Podcast as Media Kind, but the files stay in the music library and when I do another get info on them, they are still listed as Media Kind of music.
    Does anyone know of a work-around for this?
    Thanks.

    I've got the same problem. Here is a temporary workaround in windows:
    install mp3tag v2.53, a free tag editor {Google it}
    select mp3 file to set as a podcast
    right click file, select extended tabs
    select starpage icon
    create these fields and values :
    field: COMMENT ITUNPGAP
    value: 0
    field: PODCAST
    value: 1
    field: PODCASTDESC
    value: any value, Example ; The Saint
    field: PODCASTID
    value: any value, Example ; The Saint
    field: PODCASTURL
    value: any value, Example ; The Saint
    field: RELEASETIME
    value: Example ; 2012-11-28T12:00:00Z
    You can do multiple files at a time

  • Track inaccessible on iPod after changing "Media Kind" to "podcast"

    I had downloaded some mp3 of an NPR piece, which was on my 5th generation iPod Nano as a music track. In iTunes, under "Music" under my iPod, I clicked "Get Info" on the track, went to the options tab, and changed the "Media Kind" to "Podcast". The track immediately disappeared. I now have no way to access it! It's not listed under Music or under Podcasts, either through iTunes or on the iPod itself after I eject it.
    I thought maybe the file was somehow deleted off the iPod. I decided to test this by first noting the capacity that iTunes shows for my iPod -- 7.12 GB audio, 145.7 MB other, 91.1 MB free. Then I picked an MPEG song file that I didn't particularly care about on my iPod, and changed the "Media Kind" from "Music" to "Podcast". Again, it disappeared. The capacity numbers didn't change.
    This seems really bad: my iPod is now burdened with at least two sound files that I cannot access, even to delete!
    I am using "manually manage music and videos" on this iPod and I would really like to avoid wiping the iPod of the exact set of songs I like on it!

    I'm having the exact same problem.
    Latest software on all devices (Mac).
    Help!

  • HT201306 I can not change the "media kind" because it's greyed out.  How do I get past this problem?

    I can't change the "media kind" to book from music because this option is greyed out.  How can I change this so I can view the digital booklet that should have come with my "delux" purchase?

    Does this happen with all media in iTunes or just that one specific track?
    If it happens with everything, try following along with turingtest2's fix in this thread -> Information boxes grayed out
    The Music folder that those files are stored in might be locked or your user account may not have complete access.
    If it only happens with one track, try importing it into iTunes again or redownloading it.

  • How do I set the frame size

    I am Making a program for purchasing games, with the basic layout alsot done, except on problem. When the purchase button is pressed, a dialog shows up but nothing is seen until i resize it. How would i set the frame size so that i do not need to resize it each time? below is the code for the files. Many thanks in advance.
    CreditDialog
    import java.awt.*;
    import java.awt.event.*;
    class CreditDialog extends Dialog implements ActionListener { // Begin Class
         private Label creditLabel = new Label("Message space here",Label.RIGHT);
         private String creditMessage;
         private TextField remove = new TextField(20);
         private Button okButton = new Button("OK");
         public CreditDialog(Frame frameIn, String message) { // Begin Public
              super(frameIn); // call the constructor of dialog
              creditLabel.setText(message);
              add("North",creditLabel);
              add("Center",remove);
              add("South",okButton);
              okButton.addActionListener(this);
              setLocation(150,150); // set the location of the dialog box
              setVisible(true); // make the dialog box visible
         } // End Public
         public void actionPerformed(ActionEvent e) { // Begin actionPerformed
    //          dispose(); // close dialog box
         } // End actionPerformed
    } // End Class
    MobileGame
    import java.awt.*;
    import java.awt.event.*;
    class MobileGame extends Panel implements ActionListener { // Begin Class
         The Buttons, Labels, TextFields, TextArea 
         and Panels will be created first.         
         private int noOfGames;
    //     private GameList list;
         private Panel topPanel = new Panel();
         private Panel middlePanel = new Panel();
         private Panel bottomPanel = new Panel();
         private Label saleLabel = new Label ("Java Games For Sale",Label.RIGHT);
         private TextArea saleArea = new TextArea(7, 25);
         private Button addButton = new Button("Add to Basket");
         private TextField add = new TextField(3);
         private Label currentLabel = new Label ("Java Games For Sale",Label.RIGHT);
         private TextArea currentArea = new TextArea(3, 25);
         private Button removeButton = new Button("Remove from Basket");
         private TextField remove = new TextField(3);
         private Button purchaseButton = new Button("Purchase");
         private ObjectList gameList = new ObjectList(20);
         Frame parentFrame; //needed to associate with dialog
         All the above will be added to the interface 
         so that they are visible to the user.        
         public MobileGame (Frame frameIn) { // Begin Constructor
              parentFrame = frameIn;
              topPanel.add(saleLabel);
              topPanel.add(saleArea);
              topPanel.add(addButton);
              topPanel.add(add);
              middlePanel.add(currentLabel);
              middlePanel.add(currentArea);
              bottomPanel.add(removeButton);
              bottomPanel.add(remove);
              bottomPanel.add(purchaseButton);
              this.add("North", topPanel);
              this.add("Center", middlePanel);
              this.add("South", bottomPanel);
              addButton.addActionListener(this);
              removeButton.addActionListener(this);
              purchaseButton.addActionListener(this);
              The following line of code below is 
              needed inorder for the games to be  
              loaded into the SaleArea            
         } // End Constructor
         All the operations which will be performed are  
         going to be written below. This includes the    
         Add, Remove and Purchase.                       
         public void actionPerformed (ActionEvent e) { // Begin actionPerformed
         If the Add to Basket Button is pressed, a       
         suitable message will appear to say if the game 
         was successfully added or not. If not, an       
         ErrorDialog box will appear stateing the error. 
              if(e.getSource() == addButton) { // Begin Add to Basket
    //          GameFileHandler.readRecords(list);
                   try { // Begin Try
                        String gameEntered = add.getText();
                        if (gameEntered.length() == 0 ) {
                             new ErrorDialog (parentFrame,"Feild Blank");
                        } else if (Integer.parseInt(gameEntered)< 0
                                  || Integer.parseInt(gameEntered)>noOfGames) { // Begin Else If
                             new ErrorDialog (parentFrame,"Invalid Game Number");
                        } else { // Begin Else If
                             //ADD GAME
                        } // End Else
                   } catch (NumberFormatException num) { // Begin Catch
                        new ErrorDialog(parentFrame,"Please enter an Integer only");
                   } // End Catch
              } // End Add to Basket
         If the Remove From Basket Button is pressed, a  
         a suitable message will appear to say if the    
         removal was successful or not. If not, an       
         ErrorDialog box will appear stateing the error. 
         if(e.getSource() == removeButton) { // Begin Remove from Basket
              try { // Begin Try
                        String gameEntered = remove.getText();
                        if (gameEntered.length() == 0 ) {
                             new ErrorDialog (parentFrame,"Feild Blank");
                        } else if (Integer.parseInt(gameEntered)< 1
                                  || Integer.parseInt(gameEntered)>noOfGames) { // Begin Else If
                             new ErrorDialog (parentFrame,"Invalid Game Number");
                        } else { // Begin Else If
                             //ADD GAME CODE
                        } // End Else
                   } catch (NumberFormatException num) { // Begin Catch
                        new ErrorDialog(parentFrame,"Please enter an Integer only");
                   } // End Catch
              } // End Remove from Basket
         If the purchase button is pressed, the          
         following is executed. NOTE: nothing is done    
         when the ok button is pressed, the window       
         just closes.                                    
              if(e.getSource() == purchaseButton) { // Begin Purchase
                   String gameEntered = currentArea.getText();
                   if (gameEntered.length() == 0 ) {
                        new ErrorDialog (parentFrame,"Nothing to Purchase");
                   } else { // Begin Else If
                        new CreditDialog(parentFrame,"Cost � 00.00. Please enter Credit Card Number");
                   } // End Else               
              } // End Purchase
         } // End actionPerformed
    } // End Class
    RunMobileGame
    import java.awt.*;
    public class RunMobileGame { // Begin Class
         public static void main (String[] args) { // Begin Main
              EasyFrame frame = new EasyFrame();
              frame.setTitle("Game Purchase for 3G Mobile Phone");
              MobileGame purchase = new MobileGame(frame); //need frame for dialog
              frame.setSize(500,300); // sets frame size
              frame.setBackground(Color.lightGray); // sets frame colour
              frame.add(purchase); // adds frame
              frame.setVisible(true); // makes the frame visible
         } // End Main
    } // End Class
    EasyFrame
    import java.awt.*;
    import java.awt.event.*;
    public class EasyFrame extends Frame implements WindowListener {
    public EasyFrame()
    addWindowListener(this);
    public EasyFrame(String msg)
    super(msg);
    addWindowListener(this);
    public void windowClosing(WindowEvent e)
    dispose();
    public void windowDeactivated(WindowEvent e)
    public void windowActivated(WindowEvent e)
    public void windowDeiconified(WindowEvent e)
    public void windowIconified(WindowEvent e)
    public void windowClosed(WindowEvent e)
    System.exit(0);
    public void windowOpened(WindowEvent e)
    } // end EasyFrame class
    ObjectList
    class ObjectList
    private Object[] object ;
    private int total ;
    public ObjectList(int sizeIn)
    object = new Object[sizeIn];
    total = 0;
    public boolean add(Object objectIn)
    if(!isFull())
    object[total] = objectIn;
    total++;
    return true;
    else
    return false;
    public boolean isEmpty()
    if(total==0)
    return true;
    else
    return false;
    public boolean isFull()
    if(total==object.length)
    return true;
    else
    return false;
    public Object getObject(int i)
    return object[i-1];
    public int getTotal()
    return total;
    public boolean remove(int numberIn)
    // check that a valid index has been supplied
    if(numberIn >= 1 && numberIn <= total)
    {   // overwrite object by shifting following objects along
    for(int i = numberIn-1; i <= total-2; i++)
    object[i] = object[i+1];
    total--; // Decrement total number of objects
    return true;
    else // remove was unsuccessful
    return false;
    ErrorDialog
    import java.awt.*;
    import java.awt.event.*;
    class ErrorDialog extends Dialog implements ActionListener {
    private Label errorLabel = new Label("Message space here",Label.CENTER);
    private String errorMessage;
    private Button okButton = new Button("OK");
    public ErrorDialog(Frame frameIn, String message) {
    /* call the constructor of Dialog with the associated
    frame as a parameter */
    super(frameIn);
    // add the components to the Dialog
              errorLabel.setText(message);
              add("North",errorLabel);
    add("South",okButton);
    // add the ActionListener
    okButton.addActionListener(this);
    /* set the location of the dialogue window, relative to the top
    left-hand corner of the frame */
    setLocation(100,100);
    // use the pack method to automatically size the dialogue window
    pack();
    // make the dialogue visible
    setVisible(true);
    /* the actionPerformed method determines what happens
    when the okButton is pressed */
    public void actionPerformed(ActionEvent e) {
    dispose(); // no other possible action!
    } // end class
    I Know there are alot of files. Any help will be much appreciated. Once again, Many thanks in advance

    setSize (600, 200);orpack ();Kind regards,
      Levi
    PS:
        int i;
    parses to
    int i;
    , but
    [code]    int i;[code[i]]
    parses to
        int i;

  • Formatting issues: when I open a msg, the font is sooo small you need a magnifier to read it. How can I set the font size to one I can easily read?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have various formatting issues:
    a. When I open a msg from my web browser (Cablevision), the font is sooo small I need a magnifier to read it. How can I set the font to a size I can easily read?
    b. When I forward msgs, the text gets all distorted and I need to clean it up (some symbols, lots of spaces between words). How can this be fixed?
    c. When I want to tell someone about a website, I cannot type the URL in so that all they have to do is click on it. How can this be fixed?
    d. When I open messages, the text opens in a small window and covers the "Show Images" button. Why?
    == This happened
    ==
    Every time Firefox opened
    == Ever since I started using Firefox (a few months ago)
    ==
    '''Troubleshooting information'''
    I didn't find any results
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-nphpclipbook
    *Office Plugin for Netscape Navigator
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *The Hulu Desktop Plugin allows Hulu.com to integrate with the Hulu Desktop application.
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *3.0.40624.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    The text editor is the text area that you use on the webmail (Yahoo, Hotmail) website to create a new mail.
    You can compare that with the ''Post new message'' text area that you use to create a new post on this forum.
    Just above the text area that you use to enter the message text there is usually a button bar with buttons that allows some text formatting like Bold and Italic and can also include a button to make a clickable hyperlink.
    Check the tooltip of each button by hovering with the mouse over each button.
    Make Link - https://addons.mozilla.org/firefox/addon/142

  • How do I set the content type ?

    Hi
    I have to upload a file from my Java Application to a remote servlet.
    I have used the HTTPConnection class to connect to the remote servlet and made it call the POST method explicitly.
    How do I set the content type of the file I am uploading from my Java apllication?
    I tried to change the content type in the doPost method. by giving
    req.setContentType("multipart/form-data"); in the doPost.
    It still doesnt work..
    Is there any way to set the content type in the Java application?
    Thanks in advance

    What class is your req variable? If your using a HttpServletRequest, then there is no method req.setContentType("");
    In the HttpServletResponse this is for telling the web browser or receving medium what kind of mime type to expect.
    And what package is the HttpConnection class from?
    I think more precise info is required before this question can be answered.

  • The default disk that itunes saves videos onto is full. How can I set the default to the other disk I have installed?

    When adding a video onto iTunes I get the error message that my disk is full. I am aware of this. I have another disk(Actually same disk but it's split into two parts under computer). It has plenty of space(629 GB free). How do I set the disk that itunes downloads onto as the second disk?

    Hi o0OZACO0o,
    Thanks for visiting Apple Support Communities.
    If you have iTunes set to organize your files, you'd need to make the other drive the default location of your iTunes library. See these articles for more information:
    iTunes for Windows: Moving your iTunes Media folder
    http://support.apple.com/kb/HT1364
    iTunes: Understanding iTunes Media Organization
    http://support.apple.com/kb/ht3847
    Best Regards,
    Jeremy

  • How can I set the field ICt in component table of the Tasklist as "Input" ?

    Hi experts,
    How can I set the field ICt (BOM's Item Category (POSTP)) in component table of the Tasklist as "Input" Status (The system is in gray now).
    I can define the different Category value by IB01 or IB02,then I can select them at the Tasklist's component table.But sometimes I need batch input such as LSMW,so pls kindly tell me how to setup it,thanks!
    Yinjun

    Hi,
    BOM is created with some component and item category.
    In task list when you go to component, in normal case one selects and copies BOM over there by clicking component selection button.
    Once BOM is copied over there the BOM item category will get copied. As it is BOM item category in Task list it is greyed and it will get copied automatically from BOM.
    You specify item category required by you in IB01 or IB02 and then use that BOM in task list. Go to componenet tab and click component selection button. Once BOM is copied over there the BOM item category will get copied

  • How do you set the burn rate?

    I have been told that best results are attained when DVDs are burned at a slow rate, such as 4X. I have no idea of the rate of my burns, and I 'm wondering how I can set the rate at 4X. Is the burn rate manipulated thru DVD Studio Pro, or is it simply determined by the balnk media you insert? For example: does an 8X disc automatically burn at 8X, and a 4X disc automatically burn at 4X?
    Thanks, Bob

    The burn rate cannot be higher than what the drive is rated for, or the speed the disc is rated for, whichever is lower. So if you have a 2x burner (most likely considering the age of your computer), then that is the maximum speed you can burn at regardless of the speed of the disc media (which could be 16x).
    Toast is software. So you would not use it "instead of" your Pioneer burner. You would use it with your Pioneer burner.

  • 8330 Call Forwarding​...How do I set the number of rings before calls are forwarded?

    8330 Call Forwarding...How do I set the number of rings before calls are forwarded? Right now it instantly forwards my calls but I don't want that. I want to change it so that let's say that if after 5 rings I don't answer the call is forwarded. I've looked everywhere for an answer but have had no luck. Any help would be appreciated. I am with Virgin Mobile if this makes a difference.
    Thank you 
    Message Edited by 8WDDdotcom on 08-01-2009 02:39 PM
    Message Edited by 8WDDdotcom on 08-01-2009 02:44 PM

    Well, call forwarding is a feature provided by your carrier -- it is not a function of the device. However it works for your carrier is how it works. Actually, from what I understand about call forwarding, it normally is an all-or-nothing circumstance...calls forward to the number you've asked them to be forwarded to, keeping you in a DND status. Regardless, though, if your carrier tells you how it works on their system, there's nothing that the device can do to override that. Unless there is some kind of 3rd party app that would do it, bypassing (somehow) the carrier network CF feature...but I've never heard of such a thing.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Changing the media kind.

    I can't change the media kind of a digital booklet to make it a book so I can sync it. And I don't have iTunes Match .

    "Podcast" is not a file format or anything, it's simply how it was downloaded, such as by being listed in an RSS feed. That's why a PDF file can be a podcast. If you simply download (or create) an mp3 file, and add it to the iTunes Library, it still doesn't have any association with a podcast feed. I think to change it you need to hack one or more of the the user-unfriendly xml files in the iTunes folder. Not something I really want to mess with, unless it's just after a full backup.
    Try this AppleScript "Re-Add Selected Tracks as Podcast v1.2" - from http://dougscripts.com/itunes/scripts/scripts07.php?page=1

  • How do you change the media type for purchased movies & TV shows?

    I have purchased many movies from iTunes, and would like to organize them a bit better. For example...I would like to classify all of the standup comedy videos I've purchased as TV Shows, with the season title of "Standup" so I can go to one place in iTunes (under TV shows) to find all of my standup comedy.
    I do the following:
    - Get Info on the movie.
    - Navigate to the Options Tab.
    - The Media Kind drop down (where you would change the media kind from Movie to TV Show) is grayed out.
    This is true for all media I've purchased from iTunes.
    If I have ripped a DVD myself, I can freely edit the media type.
    Things I have tried:
    - Checked the permissions for my iTunes folder (all levels). It is set to read/write.
    - I have tried fiddling with the command line "chmod" command for a movie file. I believe I changed the permissions to "700" which (as near as I can tell) should change the permissions so that I can edit things.
    Neither of these things worked.
    Any other things I should try? Any help is appreciated.
    Thanks.
    -Carl

    The files aren't locked in Get Info in Finder?

  • Trying to create a book and have sorted 900 photos in manual order...the book application resorts my photos and i have to search 900 photos each time. how can i set the sorting

    trying to create an Aperture book and have sorted 900 photos in manual order...the book application resorts my photos and i have to search 900 photos each time to place a photo. how can i set the sorting to stay in my manual setup?

    1.  If you manually sort Images in a Project, and then create a new Book w. "Include selected Images" checked, your manual sort order will be preserved.
    2.  As a workaround for when you have already created a Book, batch rename your Images with a leading index or counter after setting the order manually.  You'll have to create a Naming Preset, e.g.: "{Index}_{Version Name}".  The renaming should go in the order that you selected the Images, so be sure to select the first one first, and then use "Edit→Select all" to extend the selection to all Images.  Once the Images are in your Book, a sort on Version Name should be the same as the manual sort you created.
    3.  At the risk of stating the obvious, you could create the Book, import the Images, and then sort them.  The Book -- it is, to Aperture, just a special kind of Album -- retains its own manual sort order.  I recommend using Albums this way.  Use Projects to cull and develop Images, and use Albums for output.  Sorting for a Book (or any output) is better done in the container devoted to that output (and not in the Project, which is more general).
    Message was edited by: Kirby Krieger -- added #3.

Maybe you are looking for

  • Problem with Acrobat and word

    Hi  eveybody. I am going to become mad with acrobat 9.0.0 Pro Extended e world 97.  (win xp pro service pack 3) When I go to produce the acrobat document, the background become wrong, as the images added. I selected print backgroung both in acrobat a

  • Problem in Accessing Admin services using users other than administrator

    Hi, I am working on SAP MII 12.1. I have a reuirement to get list of users for a particular role from the system for display in a dropdown. I am using the URL : /XMII/Illuminator?Service=admin&mode=UserList&Group=[Param.1]&Content-Type=text/xml But I

  • Web Service Authentication Question

    Hello, I'm trying to integrate ApEx with my company's ticketing system. The ticketing system provides web services that are defined in the http://server/folders/webservices.asmx file. When I try to add a web service reference to that file I get the f

  • How to get refund?

    Dear Whom it may concerns, My skype account was hacked on 2012, JAN. Skype officer said that they will refund money to me and send email to contact me several times but I didn't receieve refund from skype. So, I want to know that when I will recieve

  • Print script?

    Can anyone point me to a simple script that will allow me to print just the menu on this page. I have a script on it now but it only works on Mac in  Safari and not Firefox. I do not know if it is working on a pc. The menu is in the Tab called " The