Publishing a video podcast using a server that is not a .MAC Account

Ok. So I created my own video on my Final Cut Pro. I'd like to publish it to the iTunes Store, but it's asking me for a URL that contains an RSS feed. I don't have a .Mac account but I do have my own with another company. What do I need to do in order to get the url and rss feed and while I use my own server?

For the RSS feed see Apples notes:
http://www.apple.com/itunes/store/podcaststechspecs.html
There is not reason why you shouldn't host the podcast and its RSS file on any server, provided that the server is configured to handle the file format: some aren't where video is concerned and the result is a garbage text file. You need to check this with your ISP.
That done all you need to do is give the iTunes store the URL of the RSS file, which contains the UTRL of the podcast (so you don't need to give iTunes the podcast URTL separately).

Similar Messages

  • Publishing NVR (Network Video Recorder) using ISA Server 2004

    I have dahua make NVR, i was publishing this through internet using ISA server 2004. In local network, its working fine. But in internet, i able to see the login screen, after enter user name and password. "Fail to connect the device in main connection"
    message comes up.
    Please give suggestion for this..

    Did you find any solution for publishing NVR on ISA server 2004, i have same problem, please share

  • Publish an iWeb site using Lion Server

    Does any one know how to publish an iWeb site using Lion Server.
    I've been getting failures every time I try to publish using ftp server choise.
    HELP!!!

    I solved this by turning off passive mode. I was using iWeb and Rapid Weaver for creating websites and had the same problem. Now they both work fine on the transfer. Hope this helps.
    JR

  • System keeps looking for a 'server' that does not exist. Is says the old name of my Airport Extreme. Clicking it away (4x) it gets through.

    System keeps looking for a 'server' that does not exist. Is says the old name of my Airport Extreme. Clicking it away (4x) finally  gets through.

    Other weirdness to report: my neighbor upstairs appears to have a Linksys router network on channel 6. My AEBS is on channel 1 so there shouldn't be interference... but according to iStumbler sometimes the signal leaps to 64000 (keep in mind my own Airport never tops 60)! Is that potentially the problem?
    Might it be possible that your neighbor just acquired a 802.11n (pre-N) wireless router recently?
    802.11n effectively increases capacity by doubling the number of Wi-Fi radios and increasing the number of antennas used to push signals out of those radios. 802.11n splits a data frame into multiple pieces. It then transmits these pieces in parallel using multiple radios that are attached to multiple antennas. These antennas blast out signals from virtually the same vantage point – scattering the signals everywhere.
    You may find the following ZDNet article interesting: http://blogs.zdnet.com/Ou/?p=247
    Even if he did not, and you are on good terms, you might want to ask if he can temporarily turn off his wireless, or, at least, reduce the signal strength to see if that will help in your situation.

  • C# error when connecting to ldap server that does not exist

    When using Novell.Directory.Ldap.dll and making a connect to an ldap
    server which does not exists i'm getting the following error:
    Connection.freeWriteSemaphore(-2): semaphore not owned by any thread
    Im using this to connect: conn.Connect(ldapHost, ldapPort);
    This error is not catched by LdapException. Can anyone tell me if this is
    a bug or do I have to do something different.

    Hi. I'm using version 2.1.11 of the NDK for CSharp. I'm getting this
    same error message:
    Code:
    Connection.freeWriteSemaphore(-2): semaphore not owned by any thread
    at Novell.Directory.Ldap.Connection.freeWriteSemaphor e(Int32 msgId)
    at Novell.Directory.Ldap.Connection.connect(String host, Int32 port, Int32 semaphoreId)
    at Novell.Directory.Ldap.LdapConnection.Connect(Strin g host, Int32 port)
    at TestLDAP.Program.Main(String[] args) in D:\Documents and Settings\tjbuege\my documents\visual studio 2010\Projects\TestLDAP\TestLDAP\Program.cs:line 20
    This occurs when I try to bind to a server that does not exist. Here
    is my sample source code that generates that error:
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Novell.Directory.Ldap;
    namespace TestLDAP
    class Program
    static void Main(string[] args)
    LdapConnection conn = null;
    string host = "server.does.not.exist.com";
    int port = 389;
    try
    conn = new LdapConnection();
    conn.Connect(host, port);
    catch (Exception ex)
    Console.WriteLine(ex.Message);
    Console.WriteLine(ex.StackTrace);
    if (conn != null)
    conn.Disconnect();
    Is there a fix for this? It makes this library useless for me.
    Thanks,
    Tim
    tjbuege
    tjbuege's Profile: http://forums.novell.com/member.php?userid=108957
    View this thread: http://forums.novell.com/showthread.php?t=365082

  • Can anyone recommend a print server that will work with Mac & PCs?

    Can anyone recommend a wireless print server that will work with Macs and PCs ?

    Wireless has a disadvantage for many Powerbooks.  Unless yours supports 802.11g, it is not secure.  So it must support Airport Extreme on the Powerbook to have a secure wireless network.   Also many printers only support 802.11b, making matters worse, as that is not secure.  See my FAQ* on printing:
    http://www.macmaps.com/printersx.html
    Some printers have ethernet ports, which would allow you to use a Wireless ethernet bridge that is 802.11g.  Similarly you could use one on the Mac, and then you'd have your wireless printing.  Ask the printer manufacturer what might be possible.  The last thing you want is an insecure network, especially if you are at most 4500 meters/1500 feet from someone who could pick it up and log into it that you don't want.
    * Links to my pages may give me compensation.

  • Can EJB 3.0 beans be used with tables that do not have a primary key?

    Can a EJB 3.0 persistence bean be used with tables that do not have a primary key defined? I am building a test application based on the HowTo - Building EJB 3.0 Faces App paper posted after Openworld (schalk). The issue I am running into when trying to run the application is: Exception Description: Entity class [class com.persistence.Rpthead] has no primary key specified. Note: I get a simular error when using toplink directly.
    The tables I am binding to do not have primary keys defined. They use unique constraints to manage the table integrity.
    Is it possible to use EJB 3.0 on tables without a primary key? If not, are there plans to support this in the future?

    The spec requires a primary key Id annotation. I will take your suggestion to EJB 3.0 expert group.
    Can you also send an email to [email protected] with your requirement?
    -Debu

  • Using custom classes that are not beans

    Hi folks,
    Is it possible to use java classes that are not beans. I mean, on a page, could you say Customer cust = new Customer("Jones", 25);
    if you had a Customer class with a constructor that took a name and age (String and int).
    If so, how do you go about this- do you need to import the class, or put it in a standard location? I'm using Tomcat, and would guess that this would go in WEB-INF/classes?
    I hope it's not a stupid question, all the literature seems to be focused on JavaBeans
    Any advice on this would be great!

    Beans are used as putting Java code into a JSP is generally considered bad practice. The advantage of the bean pattern is that you use things like:
    <jsp:setProperty name="laBean" property="someSetter" value="someValue" />so that you aren't embedding Java directly into the JSP. I'm not very religious about this particular topic personally and will throw a line or two in here and there.
    Having said that though, you can easily use any Java class in a JSP. You'll have to import it first:
    <%@ page import="java.util.*" %>And then you can easily use it like in a real Java program.

  • I Ipod class wont play TED and other video podcasts.  The genious bar could not figure out the problem.  This problem is not isolated to a single computer.  Secondly, the convert to ipod version feature in Itunes does not resolve the problem.

    My Ipod classic wont play TED, The Grid, Techzilla and other video podcasts (but not all video podcasts).  The genious bar could not figure out the problem. Instead, the Apple store gave me credit towards a new classic, which produced the same problem.  This problem is not isolated to a single computer.  Secondly, the convert to ipod version feature in Itunes does not resolve the problem.  Lastly, I tried restoring the ipod to no avail.  I've heard this is a video codec problem. 

    See this extensive older thread on the issue.
    https://discussions.apple.com/thread/2813428?start=45&tstart=0
    B-rock

  • HT1937 Hi . I am using a carrier that is not listed in my country which is Saudi Arabia and I'm using Mobily line it won't work with me ..what should I do ?

    Hi . I am using a carrier that is not listed in my country which is Saudi Arabia and I'm using Mobily line it won't work with me ..what should I do ?

    Contact that carrier's technical support people.  It sounds like your issue is with that specific carrier, so only they will be able to help you make a particular device work on their network.
    P.S. if you mean you bought a phone from Mobily and are trying to use it with another carrier, you cannot.  A mobily phone will be locked to mobily, and according to Apple's list, they do not offer unlocking of their iPhones (http://support.apple.com/kb/ht1937).

  • HT4436 I have a primary email address that I use now that is not an icloud account.  If I create an icloud email address, will I be able to send/receive  emails on both accounts simultaneously?

    I have a current primary email address that is not an icloud account.  If I create an icloud email account, will I be able to send and receive emails from both accounts simultaneously, or will the icloud account become my primary account and will I then have to inform everyone that I have a new email address?

    Welcome to the Apple Community.
    You can use either account and set one as default if you wish.

  • Why is the message app popping up on my mac when everything has been disabled on my iphone and mac, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!

    Why is the message app popping up on my mac when everything has been disabled on my iphone and mac as per the instructions all over this forum, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!
    Have disabled in Messages > preferences on the Mac
    imessage is disabled on my iphone
    Same goes for Safari which pops up on the mac when I open it on my iphone, how can I disable it all?

    Thanks but have signed out, disabled and nothing.
    It's Yosemite not Mavericks.
    What it won't let me do is delete the account as the - button is greyed
    out.
    It won't let me delete the app from the OS
    On Monday, February 2, 2015, Apple Support Communities Updates <

  • HT201269 how to I transfer my photos from my iphone 4S to my laptop computer (that is not a Mac)

    how to I transfer my photos from my iphone 4S to my laptop computer (that is not a Mac)

    YOu don't need a MAC you can import to any pc http://support.apple.com/kb/HT4083

  • Video slides in Captivate 7 that will not play once published

    Hello,
    I recently created an eLearning within Captivate 7  that contains several video slides.  When published, the video slides no longer work and instead have a spinning wheel that will not go away.  Does anyone have any suggestions?  I really don't want to redo the video slides.
    Thanks,
    Wendyl

    Hi there
    Once you publish your files, they *SHOULD* be on your local hard drive. And it's odd, but things behave differently when you play them from your local hard drive than they will once you copy them to the Web Server that all your end users will be accessing the content from.
    What was suggested was to copy the files to that Web Server and test from there to see if the issue persists.
    Cheers... Rick

  • Step by step instructions to create video podcast using iweb

    are there step my step instructions using iweb to submit a video podcast...i have tried everything, i have a site set up with my video cast, submitted it to itunes but there seems to be a problem,,also is there a hyrarchy of folder inside the web folder on the idisk that i should e checking...
    thanks!

    thanks

Maybe you are looking for

  • Left Arrow Interactive Buttons in InDesign CS5.5 Backwards type

    Does anyone have a solution to the backwards type that appears in all left or previous page arrows in the InDesign Interactive Button Section? Is this a glitch in the software. It seems the left buttons were created by flopping the right arrows...thu

  • Problem with a Zebra Printer TLP 2844

    Hi all We have a problem with a Zebra TLP 2844 barcode printer. I can´t print any document(common documents or barcode levels Sapscript). I read and applied the note: "Note 179534 - Label printing with Zebra printers (SAPscript)" without sucesfully (

  • Data Log File Refnum Type Def Bug??

    Hello, I just found some quirky behaviour (LV 7.1.1): 1. In the attached LLB, open "RefnumVI.vi" 2. Select the Data Log File Refnum control and open it for editing (Edit - Customize Control ... from the menu) 3. Close "RefnumVI.vi" but leave "Refnum.

  • More than 1 site

    I would like to build a few different sites..I know if you start another account in your computer you can do so, but to publish them ( with different URL) do you need another .MAC account.?..Brian ibook g4 933 MHz   Mac OS X (10.3.9)  

  • display:table.... /display:table   export problem

    HI, when I wrote in the jsp: <display:table pagesize="30" class="isis" name="contacts" export="true"> <display:column property="firstName"/> <display:column property="lastName"/> <display:column property="title"/> <display:column property="gender"/>