How do you make movies sent to you tube accessible to mobile devices

How do you make movies that are sent to you tube accessible to mobile devices

hey there,
Do you mean that you want to play some youtube videos on your mobile devices? If so, that would be really easy.
As to most of the codec problem, a video converter can move away your troubles. And since almost of the current video converters can support all video format file input, you can use it in most codec cases.
tips for you, most of the mobile devices support .mp4 best. In this case, if your device's name isn't in the output format list, you can just choose the output format as MPEG-4.
here's the guide of the one i used to use, wish that can help you. Good luck~

Similar Messages

  • TS1567 How do you get  the apple mobile device service started

    How do you get the apple mobile device service started

    http://support.apple.com/kb/ts1567
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    Next see:
    iOS: Device not recognized in iTunes for Windows

  • I am having trouble connecting my Iphone to Itunes. How do you turn on apple mobile device on a window computer

    Anyone know how to turn on Apple mobile device on a windows computer. I connected my phone and it was recognized initially then when I performed an update to Itunes it no longer recognized my phone.

    Have a look at this support document, it may help http://support.apple.com/kb/TS1567

  • How do you select two audio capture devices?

    Hi all,
    At the moment I'm simply using CaptureDeviceManager.getDeviceList to get a list of all the capture devices on my system. Now when I print this it looks like this...
    [DirectSoundCapture : dsound://
    LINEAR, 48000.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 48000.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 48000.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 48000.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 44100.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 44100.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 44100.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 32000.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 32000.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 32000.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 32000.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 22050.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 22050.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 22050.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 22050.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 16000.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 16000.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 16000.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 16000.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 11025.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 11025.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 11025.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 11025.0 Hz, 8-bit, Mono, Unsigned
    LINEAR, 8000.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 8000.0 Hz, 8-bit, Stereo, Unsigned
    LINEAR, 8000.0 Hz, 8-bit, Mono, Unsigned
    , JavaSound audio capture : javasound://44100
    LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 44100.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 22050.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 22050.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 11025.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 11025.0 Hz, 16-bit, Mono, LittleEndian, Signed
    LINEAR, 8000.0 Hz, 16-bit, Stereo, LittleEndian, Signed
    LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed
    Now my system actually has 2 michrophones attatched to it. At the moment I'm using DirectSoundCapture to record audio. My first question is, how do you detect multiple audio capture devices? and then of course, how can you record off of different audio capture devices?
    Anything would be helpful, if theres a tutorial somewhere on this which i've missed somehow, please tell me. I'm probably missing something pretty major I figure.

    I posted in a different thread that I was using the old javax.sound.sampled library to try to record. However, using this library it was quite simple to get a list of devices which could then be used to make a SourceDataLine that could be used to record. However, I was having trouble actually recording and switched to JMF as it has more features and I thought it would be simpler to use. It probably is but I have been struggling. I can record audio in JMF fine but I cant get a device list as I could with the javax.sound.sampled library.
    I'll put the code I was working off in here anyway. It shows what I want to do, I just want to do it in JMF.
    Note that this code was written 4 years ago by a Matthias Pfisterer and not by myself.
    import javax.sound.sampled.AudioFileFormat;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.Line;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.Mixer;
    import javax.sound.sampled.SourceDataLine;
    import javax.sound.sampled.TargetDataLine;
         /** List Mixers.
              Only Mixers that support either TargetDataLines or SourceDataLines
              are listed, depending on the value of bPlayback.
         public static void listMixersAndExit(boolean bPlayback)
              out("Available Mixers:");
              Mixer.Info[]     aInfos = AudioSystem.getMixerInfo();
              for (int i = 0; i < aInfos.length; i++)
                   Mixer mixer = AudioSystem.getMixer(aInfos);
                   Line.Info lineInfo = new Line.Info(bPlayback ?
                                            SourceDataLine.class :
                                            TargetDataLine.class);
                   if (mixer.isLineSupported(lineInfo))
                        out(aInfos[i].getName());
              if (aInfos.length == 0)
                   out("[No mixers available]");
              System.exit(0);
    Calling this method on my system will print the following.
    Available Mixers:
    Microsoft Sound Mapper
    AK5370
    SoundMAX Digital Audio
    AK5370 (2)
    This looks very different to what I get when I call CaptureDeviceManager.getDeviceList()
    How can I achieve the equivilent in JMF?

  • HT1420 How do you find list of actual devices that are connected to your itunes account?  I'd like to know before deauthorizing, exactly what devices it is showing as connected

    How do you find list of actual devices that are connected to your itunes account?  I'd like to know before deauthorizing, exactly what devices it is showing as connected

    Click here and ask. If the iTunes Store staff doesn't give it to you, no.
    (86004)

  • How do you launch apps on your device when it keeps saying my device was not known any advice?

    How do you launch apps from your device mine being a Macbook pro?

    Hi TammyPruett,
    I apologize, I'm a bit unclear on the exact issue you are describing. If you are having issues launching applications on your Mac, you may find the following articles helpful:
    Mac OS X: How to troubleshoot a software issue
    http://support.apple.com/kb/ht1199
    Apple Support: Troubleshooting the Mac App Store
    http://support.apple.com/kb/ts3624
    Regards,
    - Brenden

  • Since I get Adobe revel my photos in "Mobile albums" on my iMac disappeared. "Mobile albums" are accessible on mobile devices only. How to get back mobile albums on my iMac?

    Since I get Adobe revel my photos in "Mobile albums" on my iMac disappeared. "Mobile albums" are accessible on mobile devices only. How to get back mobile albums on my iMac?

    Which version of PSE? For PSE 12 you should be able to just log into revel in PSE and have them appear. If you were using an older version of PSE, there's a free mac app in the app store.

  • HT201269 how do you backup music from old device to new device?

    how do you backup music from old iPhone 4S to new iPhone 5 ? when trying to sync it wants to delete the old music and replace it with nothing!

    http://support.apple.com/kb/ht2109
    Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • How do you get imessage off a device you dont have anymore?

    how do you get imessage off a devise you dont have anymore?

    You can try unregistering your old phone with Apple by:
    Going to: https://supportprofile.apple.com/MySupportProfile.do
    Sign in with your Apple ID
    Click on ">" to the right of the phone listing
    Click "unregister"
    Unfortunately, this doesn't always work.

  • How do I set iPhone so it isn't recognized as mobile device when browsing?

    The great thing about having a smartphone, and especially the iPhone, is that it has a fully functioning Web browser. There are so many sites out there that still force the iPhone to display and use the dumbed-down mobile sites, however, and without the option to view the regular, full-function site. Contacting the sites' owners about it yields no results. What I'd really like to know is how to make it so that my iPhone is not recognized as a mobile device. I believe the Android has that option; why can't we have it?
    The particular reason I'm asking is that I also use Yahoo business for e-mail, and Yahoo does not allow iPhone users to bypass their mobile mail site. Now, I know what you're going to say: just use the built-in mail feature. In fact I do, but the trouble is that I send and receive lots of mail in the course of my business, and sometimes I need to find a mail I sent a month or several months ago while I'm on the road. The iPhone search function can't help me with that unless I spend an hour downloading all of my sent e-mails from the past months first, and even then it sometimes doesn't find what I'm looking for. The mail search on Yahoo's Web site works perfectly (and quickly!) for that, but for some reason Yahoo doesn't allow me to switch from my personal Yahoo mail to my business Yahoo mail when using their mobile site. I can do so easily on their full-function site, but because I cannot hide that I am a mobile user, I can't access this functionality while I'm away.
    I've already given my feedback about this to Yahoo multiple times, and nothing has been done. Please tell me how I can adjust this setting on the iPhone so that I can view the full-function sites as a non-mobile user.

    When you access a web page, the browser will identify itself to the server as either the desktop or the mobile version and the server will send the appropriate page to the end device. In the case of the iPhone, Safari identifies itself as Mobile Safari, hence the mobile pages. This is very annoying and cannot be changed.
    However, there are third-party browsers which could be set up to identify themselves as desktop browsers. I use the Atomic Web Browser which is fantastic as it has many improved features compared to Mobile Safari. Download it from the AppStore and, in the Settings menu, make it identify as Safari Desktop. It's that simple.

  • Help make an email signature a callable link on mobile devices

    My company currently has an e-mail signature that has our logo, website and phone numbers. This was created in InDesign, and saved as .png to insert as an image in outlook 'signatures'. I know how to make a hyperlink in ID, that can be active in a PDF, and I looked up how to make phone numbers callable the same way, again active in a pdf. BUT, you can't insert an interactive pdf in an e-mail signature. Can I save this as something that can be inserted as an e-mail signature and then clickable and callable from people's mobile devices?? Do I need to use a different Adobe program? Or must it be done within outlook?
    Thanks!

    Images can't have built-in links. That's all done in the underlying HTML code, or in your terms in Outlook itself. You seriously need to do some reading on basic web stuff.
    Mylenium

  • How can i improve performance of a horizontal parallax on an mobile device?

    I've created a Horizontal Parallax website using Adobe Muse, and it works perfectly on a desktop machine, but as you use it on a mobile device such as an iPad, the performance becomes jerky and jumpy.
    I added navigation buttons to jump to set keypoints, which again, work smoothly on a desktop, but then jump on a mobile device.
    Is there any way to prevent this jumpy motion and make it more smooth?
    Thanks in advance!

    Its just scrolling images. A Horizontal Parallax, (the pages are placed in the project vertically, as suggested by adobe).   There are no animated images, no videos either.  All are just transparent PNGs with scroll effect attached.
    It seems jumpy if you use it on the ipad, both through scrolling, but even worse if you use the navigation i've implemented, which is supposed to scroll to the anchor point.

  • How to connect from SAP BO Explorer (or) SAP Dashboard to Mobile device ( SAP BO Mobile app)

    Hi Friends,
                    Can you please guide me , how to connect the SAP BO Explorer/Dashboards in mobile device.
    Regards,
    Mahesh.

    Hi Mahesh,
    Take a look at this thread.
    http://scn.sap.com/community/mobile/businessobjects/blog/2013/10/10/how-to-connect-sap-bo-mobile-to-a-bi-server-40

  • How to deploy application created in SAP MI 7.1 on Mobile Device.

    Hi Friends,
    I have developed a m employee application in SAP MI 7.1 through Netweaver Developer Studio running succesfully on mobile simulater.
    I have also successfuly Installed SAP MI Client 7.1 on my mobile device.
    Now I am struggling with how to deploy my application on mobile device.
    Is there any way that I can simply copy the working project files from developer studio and paste them in Mobile Device to make the application work on mobile device as well.
    or is there any other method to do this .
    Please Suggest.
    Regards
    Nitesh.

    <pre>
    Hi Amit
    Firstly I created the
    1. Employee_sc Service in the Service Explorer
    2. Employee_UI in the handheld UI explorer.<
    3. Emplyee_app in the 'Applicaton Explorer' where I included both the service and the UI together.
    Then I deployed all three in the default Mi location and tested in the simulater . It works fine in simulater.
    In the First View of my application I am not displaying any data from the DOE.
    In the first View I just have the butons to create, search and delete employee details.
    In my whole application I am not using any data objects from the backend. The dataobjects are creted in the frontend (NWDS) only.
    Now Instead of AWT I Installed JSP Container. It is now Showing The employee application.
    But as soon as I click the application it gives the execption.
    Error: 500
    Location: /me/startInternal Servlet Error:<br>
    java.lang.NullPointerException at com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.findFramework() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.startApplication() at <br>com.sap.tc.mobile.cfs.jspui.MainServlet.LaunchApplication() at com.sap.tc.mobile.cfs.jspui.MainServlet.doHandleEvent() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetThreadSafe() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at com.sap.tc.mobile.cfs.jspui.MainServlet.doGet() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doPost() at com.sap.tc.mobile.cfs.jspui.MainServlet.doPost() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at <br>org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at <br>org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at <br>org.apache.tomcat.core.ContextManager.service() at <br>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at <br>org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at <br>java.lang.Thread.run()
    <br>The contents of Jscout File are :-
    NSIcom Ltd., CrEme(tm)
    CrE-ME J2ME(tm)
    CrE-ME V4.12h B162.221008 22-Oct-2008
      MemoryLimit=64000Kb
    EBCI(TM) Interpreter V1.00,
    Copyright 1998-2002 by Bytecodes, Inc.
    java.io.IOException: SysCall : bind() failed
         at java.net.PlainSocketImpl.bind()
         at java.net.ServerSocket.<init>()
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    java.lang.IllegalArgumentException: SysCall : bind() failed
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    Error starting the framework
    java.lang.reflect.InvocationTargetException: java.lang.IllegalStateException: Cannot initialize framework
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    CrEme jsPexit() called with status=1
    Please Suggest.
    Regards,
    Nitesh
    </pre>
    Edited by: Nitesh Harit on Nov 24, 2009 1:30 PM

  • How do you receive iMessages from a device other than the iPhone they originally are being sent to?

    I'm trying to receive iMessages from a phone other than my own. How do I receive them, I have both Apple IDs and both passwords but do not have current access to the phone I'm trying to get the iMessages from.

    Do you have the other phone's Apple ID active in your iPhone iMessage setting? If not, then you would not get them. And, the person sending the iMessage would have to be sending to the Apple ID and not the phone number.

Maybe you are looking for