HTTP streaming on mobile device

We have an application for live streaming of videos without using adobe AIR. we need to make this live streaming of videos work on all mobile devices(i.e android and ios) using "HTTP streaming". Please let me know ASAP.

Hi,
have you done this before? How can I emded the file / stream to a webpage? Could you please explain that? And I wonder if the mobile phone's browser will be able to play the stream in its grafics interface at all. Normaly, wenn I enter an URL like rtsp://server:port/file.sdp in the browser it opens automatically the media player of the mobile phone that tries to connect. I arrive establishing the connection to the streaming server but then nothing else happens - the stream isn't played. I know that it depends from the network operator I am using. With the german t-mobile I can watch my streams but with e-plus (KPN-DE) for example it doesn't work. There's a list in this forum that shows rtsp-friendly operators and the non-friendly ones. My questions simply is: IS THERE ANY WAY TO GET MY STREAM STARTED EVEN WHEN I USE A NON RTSP-FRIENDLY MOBILE OPERATOR? I guess that could be done by using the right protocols (like TCP instead of UDP and Port 80 that should always be open instead of 554).
ANY HELP WOULD BE APPRECIATED! Thanks.

Similar Messages

  • MP4 streaming to mobile devices?

    I was asked by the dev guys here at work if its possible to stream our videos as mp4 rather than flash to mobile devices?
    We currently stream in RTMPE to a custom player on our websites... but now we want to expand to mobile devices like the iPhone.
    So i would need to create a new application?
    I am new to FMS, can someone point me to some docs on how to do this?
    Or is it even possible?
    Thanks...

    Take a look at Wowza Media Server, they offer all that. http://www.wowzamedia.com/
    Adobe has received a lot of feedback concerning this issue that FMS can't stream out to anything but Flash and would be sure to welcome even more. Feel free to hit them up on the bug/feature request page: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Streaming audio-video on the mobile device

    Please, I must do the streaming audio-video on the mobile device using a server standard.
    I must to program the application for the server using j2se:in this case how i can send the file audio/video?This file have specifies classes?
    For the client i must using the j2me:in this case how can receive the file audio and creating the player?
    Thanks.

    Hi, please help,
    I have problem in this area also,
    am intending to stream audio and video data to mobile phone using j2me for my bs project.,
    is that true, midlets can only 'plays back' one file at time specified by url?
    I want to store many files in database( e.g ms access), and call them to midlets, to make some how interactive and real,because i have tomcat server installed in my pc.
    is this possible?
    How can i call file stored beyond path of WTK ?
    can i store audio/ video file in ms- access?
    Please, please help !
    thanks in advance.
    Message was edited by:
    nbkamani

  • Video playback on mobile device

    Hello,
    I'm new here and probably this was asked before me, but I spent a lot to search on the net and actually couldn't find much.
    I'm developing a web based application dealing with video - it should be controlable and have to interact with other elements of the app. The client now asks mobile apps - for Android and iOS, that should have same features.
    I looked for solutions to play video on mobile device using Flex and building mobile apps but nowhere could find a proper explanation and results about framerates and performance. The other problem I think will be that the mobile device should play streamed video (which can be encoded in any suitable format) as well as native video - usually h.264, that as far as I understood, is not possible on iOS (I coudn't find out about Android).
    On my Android device I can play very smoothly even web videos (in the browser) that are not "optimized for mobile" as it pops up during playback. I made a test and build a simple app that just plays a remote video using the Spark's VideoPlayer and its framerate was OK but the picture was terrible - some strange coloured lines appeared.
    Is there anybody who has more info about video playback on mobile device, codecs, components etc. I need that info to make the choice to stick with Flash development for all the apps or to go for native development with platforms' SDK.
    Thanks

    Can you say even more about what it is you want to do? I mean, what will the application do, not what are the technical aspects of how it will work?
    For a point of comparison, look at this thing I did:
    http://www.cartoonnetwork.com/mixit/
    If you try out the Make page, both the template ones and the from scratch one, as well as the View page to see the playback unit in action. Is what you're going to do anything like that?
    I have tried the playback part of this as a mobile app, and it so very nearly works ok! Amongst the many problems are that the overall data rate needed is quite high, and mobile devices aren't as consistant or high bandwidth as desktops, the external swfs often need code in them, so that rules out iOS, and to do the layering involved rules out H.264.
    At some future time there will hopefully be StageVideo that can use H.264, but I don't know when that will be, or whether it will be responsive enough (FLV is much faster to connect to and play than H.264).
    Incidentally, even in the Objective-C world you can't lay things on top of the standard iOS H.264 player. To do that you have to use the AV Foundation class, so it's fairly low level programming. Using FLV in Flash is a lot easier!

  • IOS Mobile Device Management - The SCEP server returned an invalid response

    I am in the process of writing an open source iOS mobile device management module in Java. For this I am referring the Apple provided Ruby code at [1]. I have set this up and it works fine for me. Now I need to convert this code to Java. So far I have accomplished to do that up to PKIOperation. In the PKI operation I get "The SCEP server returned an invalid response" which I believe is due to wrong response I sent to device upon PKIOperation.
    However when I do search on the internet I get this is something to do with the "maxHttpHeaderSize" as I am using the server as Apache Tomcat. Although I increase that since still it does not get resolved.
    Here is the code I need to convert - taken from Apple provided Ruby script
    if query['operation'] == "PKIOperation"
        p7sign = OpenSSL::PKCS7::PKCS7.new(req.body)
        store = OpenSSL::X509::Store.new
        p7sign.verify(nil, store, nil, OpenSSL::PKCS7::NOVERIFY)
        signers = p7sign.signers
        p7enc = OpenSSL::PKCS7::PKCS7.new(p7sign.data)
        csr = p7enc.decrypt(@@ra_key, @@ra_cert)
        cert = issueCert(csr, 1)
        degenerate_pkcs7 = OpenSSL::PKCS7::PKCS7.new()
        degenerate_pkcs7.type="signed"
        degenerate_pkcs7.certificates=[cert]
        enc_cert = OpenSSL::PKCS7.encrypt(p7sign.certificates, degenerate_pkcs7.to_der,
            OpenSSL::Cipher::Cipher::new("des-ede3-cbc"), OpenSSL::PKCS7::BINARY)
        reply = OpenSSL::PKCS7.sign(@@ra_cert, @@ra_key, enc_cert.to_der, [], OpenSSL::PKCS7::BINARY)
        res['Content-Type'] = "application/x-pki-message"
        res.body = reply.to_der
    end
    So this is how I written this in Java using Bouncycastle library.
    X509Certificate generatedCertificate = generateCertificateFromCSR(
                    privateKeyCA, certRequest, certCA.getIssuerX500Principal()
                            .getName());
            CMSTypedData msg = new CMSProcessableByteArray(
                    generatedCertificate.getEncoded());
            CMSEnvelopedDataGenerator edGen = new CMSEnvelopedDataGenerator();
            edGen.addRecipientInfoGenerator(new JceKeyTransRecipientInfoGenerator(
                    receivedCert).setProvider(AppConfigurations.PROVIDER));
            CMSEnvelopedData envelopedData = edGen
                    .generate(
                            msg,
                            new JceCMSContentEncryptorBuilder(
                                    CMSAlgorithm.DES_EDE3_CBC).setProvider(
                                    AppConfigurations.PROVIDER).build());
            CMSSignedDataGenerator gen = new CMSSignedDataGenerator();
            ContentSigner sha1Signer = new JcaContentSignerBuilder(
                    AppConfigurations.SIGNATUREALGO).setProvider(
                    AppConfigurations.PROVIDER).build(privateKeyRA);
            List<X509Certificate> certList = new ArrayList<X509Certificate>();
            CMSTypedData cmsByteArray = new CMSProcessableByteArray(
                    envelopedData.getEncoded());
            certList.add(certRA);
            Store certs = new JcaCertStore(certList);
            gen.addSignerInfoGenerator(new JcaSignerInfoGeneratorBuilder(
                    new JcaDigestCalculatorProviderBuilder().setProvider(
                            AppConfigurations.PROVIDER).build()).build(
                    sha1Signer, certRA));
            gen.addCertificates(certs);
            CMSSignedData sigData = gen.generate(cmsByteArray, true);
            return sigData.getEncoded();
    The returned result here will be output in to the servlet output stream with the content type "application/x-pki-message".
    It seems I get the CSR properly and I generate the X509Certificate using following code.
    public static X509Certificate generateCertificateFromCSR(
            PrivateKey privateKey, PKCS10CertificationRequest request,
            String issueSubject) throws Exception {
        Calendar targetDate1 = Calendar.getInstance();
        targetDate1.setTime(new Date());
        targetDate1.add(Calendar.DAY_OF_MONTH, -1);
        Calendar targetDate2 = Calendar.getInstance();
        targetDate2.setTime(new Date());
        targetDate2.add(Calendar.YEAR, 2);
        // yesterday
        Date validityBeginDate = targetDate1.getTime();
        // in 2 years
        Date validityEndDate = targetDate2.getTime();
        X509v3CertificateBuilder certGen = new X509v3CertificateBuilder(
                new X500Name(issueSubject), BigInteger.valueOf(System
                        .currentTimeMillis()), validityBeginDate,
                validityEndDate, request.getSubject(),
                request.getSubjectPublicKeyInfo());
        certGen.addExtension(X509Extension.keyUsage, true, new KeyUsage(
                KeyUsage.digitalSignature | KeyUsage.keyEncipherment));
        ContentSigner sigGen = new JcaContentSignerBuilder(
                AppConfigurations.SHA256_RSA).setProvider(
                AppConfigurations.PROVIDER).build(privateKey);
        X509Certificate issuedCert = new JcaX509CertificateConverter()
                .setProvider(AppConfigurations.PROVIDER).getCertificate(
                        certGen.build(sigGen));
        return issuedCert;
    The generated certificate commonn name is,
    Common Name: mdm(88094024-2372-4c9f-9c87-fa814011c525)
    Issuer: mycompany Root CA (93a7d1a0-130b-42b8-bbd6-728f7c1837cf), None
    [1] - https://developer.apple.com/library/ios/documentation/NetworkingInternet/Concept ual/iPhoneOTAConfiguration/Introduction/Introduction.html

    I am in the process of writing an open source iOS mobile device management module in Java. For this I am referring the Apple provided Ruby code at [1]. I have set this up and it works fine for me. Now I need to convert this code to Java. So far I have accomplished to do that up to PKIOperation. In the PKI operation I get "The SCEP server returned an invalid response" which I believe is due to wrong response I sent to device upon PKIOperation.
    However when I do search on the internet I get this is something to do with the "maxHttpHeaderSize" as I am using the server as Apache Tomcat. Although I increase that since still it does not get resolved.
    Here is the code I need to convert - taken from Apple provided Ruby script
    if query['operation'] == "PKIOperation"
        p7sign = OpenSSL::PKCS7::PKCS7.new(req.body)
        store = OpenSSL::X509::Store.new
        p7sign.verify(nil, store, nil, OpenSSL::PKCS7::NOVERIFY)
        signers = p7sign.signers
        p7enc = OpenSSL::PKCS7::PKCS7.new(p7sign.data)
        csr = p7enc.decrypt(@@ra_key, @@ra_cert)
        cert = issueCert(csr, 1)
        degenerate_pkcs7 = OpenSSL::PKCS7::PKCS7.new()
        degenerate_pkcs7.type="signed"
        degenerate_pkcs7.certificates=[cert]
        enc_cert = OpenSSL::PKCS7.encrypt(p7sign.certificates, degenerate_pkcs7.to_der,
            OpenSSL::Cipher::Cipher::new("des-ede3-cbc"), OpenSSL::PKCS7::BINARY)
        reply = OpenSSL::PKCS7.sign(@@ra_cert, @@ra_key, enc_cert.to_der, [], OpenSSL::PKCS7::BINARY)
        res['Content-Type'] = "application/x-pki-message"
        res.body = reply.to_der
    end
    So this is how I written this in Java using Bouncycastle library.
    X509Certificate generatedCertificate = generateCertificateFromCSR(
                    privateKeyCA, certRequest, certCA.getIssuerX500Principal()
                            .getName());
            CMSTypedData msg = new CMSProcessableByteArray(
                    generatedCertificate.getEncoded());
            CMSEnvelopedDataGenerator edGen = new CMSEnvelopedDataGenerator();
            edGen.addRecipientInfoGenerator(new JceKeyTransRecipientInfoGenerator(
                    receivedCert).setProvider(AppConfigurations.PROVIDER));
            CMSEnvelopedData envelopedData = edGen
                    .generate(
                            msg,
                            new JceCMSContentEncryptorBuilder(
                                    CMSAlgorithm.DES_EDE3_CBC).setProvider(
                                    AppConfigurations.PROVIDER).build());
            CMSSignedDataGenerator gen = new CMSSignedDataGenerator();
            ContentSigner sha1Signer = new JcaContentSignerBuilder(
                    AppConfigurations.SIGNATUREALGO).setProvider(
                    AppConfigurations.PROVIDER).build(privateKeyRA);
            List<X509Certificate> certList = new ArrayList<X509Certificate>();
            CMSTypedData cmsByteArray = new CMSProcessableByteArray(
                    envelopedData.getEncoded());
            certList.add(certRA);
            Store certs = new JcaCertStore(certList);
            gen.addSignerInfoGenerator(new JcaSignerInfoGeneratorBuilder(
                    new JcaDigestCalculatorProviderBuilder().setProvider(
                            AppConfigurations.PROVIDER).build()).build(
                    sha1Signer, certRA));
            gen.addCertificates(certs);
            CMSSignedData sigData = gen.generate(cmsByteArray, true);
            return sigData.getEncoded();
    The returned result here will be output in to the servlet output stream with the content type "application/x-pki-message".
    It seems I get the CSR properly and I generate the X509Certificate using following code.
    public static X509Certificate generateCertificateFromCSR(
            PrivateKey privateKey, PKCS10CertificationRequest request,
            String issueSubject) throws Exception {
        Calendar targetDate1 = Calendar.getInstance();
        targetDate1.setTime(new Date());
        targetDate1.add(Calendar.DAY_OF_MONTH, -1);
        Calendar targetDate2 = Calendar.getInstance();
        targetDate2.setTime(new Date());
        targetDate2.add(Calendar.YEAR, 2);
        // yesterday
        Date validityBeginDate = targetDate1.getTime();
        // in 2 years
        Date validityEndDate = targetDate2.getTime();
        X509v3CertificateBuilder certGen = new X509v3CertificateBuilder(
                new X500Name(issueSubject), BigInteger.valueOf(System
                        .currentTimeMillis()), validityBeginDate,
                validityEndDate, request.getSubject(),
                request.getSubjectPublicKeyInfo());
        certGen.addExtension(X509Extension.keyUsage, true, new KeyUsage(
                KeyUsage.digitalSignature | KeyUsage.keyEncipherment));
        ContentSigner sigGen = new JcaContentSignerBuilder(
                AppConfigurations.SHA256_RSA).setProvider(
                AppConfigurations.PROVIDER).build(privateKey);
        X509Certificate issuedCert = new JcaX509CertificateConverter()
                .setProvider(AppConfigurations.PROVIDER).getCertificate(
                        certGen.build(sigGen));
        return issuedCert;
    The generated certificate commonn name is,
    Common Name: mdm(88094024-2372-4c9f-9c87-fa814011c525)
    Issuer: mycompany Root CA (93a7d1a0-130b-42b8-bbd6-728f7c1837cf), None
    [1] - https://developer.apple.com/library/ios/documentation/NetworkingInternet/Concept ual/iPhoneOTAConfiguration/Introduction/Introduction.html

  • HT4236 How do I start the Apple Mobile Device Service?

    iPad stopped syncing photo stream. When connected, I get the message, "This iPad cannot be used becamse the Apple Mobile Device Service is not started".

    AMDS for Mac   http://support.apple.com/kb/ht1747
    AMDS for Windows   http://support.apple.com/kb/TS1567

  • Steps to Publish Live Audio for HTTP Streaming

    I wanted to confirm some steps in order to stream Live Audio from FMS to a mobile device using HTTP Streaming and HTML 5 audio/video tags.  I have a system setup like below:
    Lets say my application which recieves the live audio is called CLASSROOM.
    Lets say my application instance is called "TEST"
    So I have application code like:
    In "onAppStart()"
    this.broadcast_live_stream = Stream.get("f4f:livestream");
    this.broadcast_live_stream.liveEvent = "TEST";
    this.broadcast_live_stream.record("record");
    To play the incoming audio:
    application.broadcast_live_stream.play(streamName); // name of the stream sending audio to the server
    Thus, I have a folder:
    Flash Media Server 4.5\applications\CLASSROOM\streams\TEST\livestream
    which contains a bootstrap, control, meta, f4f, and f4x files.
    Since I specified the Event name as "TEST", I also created the folder:
    Flash Media Server 4.5\applications\livepkgr\events\_definst_\TEST
    Which contains event.xml:
    <Event>
    <EventID>TEST</EventID>
    - <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>400000</SegmentDuration>
    <DiskManagementDuration>3</DiskManagementDuration>
    </Recording>
    </Event>
    and manifest.xml:
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
    <media streamId="livestream" bitrate="100" />
    </manifest>
    Should I then be able to create a video tag and hear the live audio:
    <video id='slide1' controls='controls'><source src='http://fms-dns/hls-live/livepkgr/_definst_/Test/livestream.m3u8'></video>
    I am not sure what other steps are needed, or a good way to test.  I don't understand how the Live Media Encoder would be needed in this situation.

    So I implemented the above change, using code from the livepkgr.
    My custom application is called Unity3, and the instance is Test, and I am trying to  publish to an event called "Test".
    I now have:
    applications\Unity3\streams\Test\livestream
    Which contains segment files, which update when I send audio in my application.
    I have:
    C:\Program Files\Adobe\Flash Media Server 4.5\applications\Unity3\events\Test\Test
    Which contains my event.xml (EventId Test), manifest.xml (StreamId livestream).  I also have a ".stream" file in this folder.  The contents of which are:
    <?xml version="1.0" encoding="UTF-8"?>
    <stream xmlns="http://ns.adobe.com/liveevent/1.0">
    <type>
    f4f
    </type>
    <name>
    livestream
    </name>
    <path>
    C:\Program Files\Adobe\Flash Media Server 4.5\applications\Unity3\streams\Test\livestream
    </path>
    </stream>
    So everything there seems to be good.  I try to use:
    <video id='live' controls='controls'><source src='http://[fms-dns]/hls-live/Unity3/Test/Test/livestream.m3u8'></video>
    or
    <audio id='live' controls='controls'><source src='http://[fms-dns]/hls-live/Unity3/Test/Test/livestream.m3u8'></audio>
    I don't hear audio, the controls don't seem to respond as though they recognize a source.  Are there certain browsers which can be confirmed work?  Any other mistakes stand out?
    Thanks.

  • IPod is not recognized by iTunes... Driver folder not in Mobile Device Support?

    I have an iPod Touch 4th Generation. First, my iPod wasn't even recognized in Windows. After following the various Apple articles, I solved this.
    But now, my iPod won't be recognized in iTunes. I've been trying to follow this: http://support.apple.com/kb/TS1538 which has worked so far. But the Apple Mobile Device USB Driver is not listed. I follow along as to what to do to solve this until I reach "
    Use this window to navigate to the following folder:
    C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.
    Note: If using a 64-bit version of Windows, this folder may be stored in C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\Drivers.
    Double-click the "usbaapl.inf" file which is listed in this folder. (This file will be called "usbaapl64.inf" if you have a 64-bit version of Windows)."
    My Mobile Device Support does not have a folder called "Drivers" and my computer does not have any file listed as "usbaapl.inf" anywhere. I'm guessing that this could be the source of the problem. But I can't fix it unless I know where to find these drivers, and I don't know they are on my computer or how to get them.
    Can anyone help?
    Thank you in advance.

    Hello tgraul,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Best of luck,
    Mario

  • I got the MSCVR80.ddl message after I tried to do the latest update on Itunes.  I went in and deleted all the related programs and reinstalled, but I keep getting a message during installation that "Service 'Apple Mobile Device' failed to start. Help!

    I was trying to do the latest update on my desktop for my Itunes.  I got MSVCR80.dll is missing.  I saw a post about deleting all the apple itunes programs, restarting and reinstalling.  I tried that.  As it was installing a message came up about "Service'Apple Mobile Device' failed to start. Verify that you have sufficient privileges to start systems services.  I did a retry, got the same message, then hit ignore.  It went on.  Then a message popped up saying "Itunes not installed correctly"  Error 7 (Windows error 126)
    Now my Itunes program will not open at all.  What gives?  This is very frustrating and I am not very computer literate to begin with.

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • SAP BI reports on mobile devices

    Hi experts
    We need have some business intelligence (SAP BI) reports and metrics on our mobile devices (BlackBerry, Iphone, Ipad). For example: The mobile'users should enter a product ID and the report show the metrics relate with it availables in SAP BI.
    We have BusinessObject products and we know about BOBJ tools to design our solution to mobile devices.
    Can we use BO Mobile and BO Explorer simultaneously to show the reports on Blackberry and Mac Devices?
    With BOBJ tools can we do a interactive report (to enter product key) ?
    Thanks for your help.
    Osmy

    Hi Osmy,
    With the latest BI4.0, you will be able to use BI Reports on Blackberry (and nokia) devices (this was also available in XI3.x releases) . There is no iphone support yet - which maybe coming shortly in later releases.
    As for Explorer, i* apps are already available - but not for blackberry as far as i know
    You may already be able to run interactive (prompted) reports on blackberry. Below is a link on design best practices for reports on mobile
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_mobile_bi_rep_design_en.pdf
    hope this helps,
    Shiva

  • Can some one help me with diagnostic test result " apple mobile device driver not found"?

    I bought an iPhone 4gs 32gb from Singapore. iso 4. I'm living in Chennai, India. To connect it to my computer (windows XP,), I have downloaded iTunes 10.6.1.7. Unfortunately iTunes is not recognizing my iPhone.  I had tried to troubleshoot it by reinstalling iTunes (2 times). I have restarted the apple mobile device from control panel. I try connecting my iphone in another usb port. but no use. I don't know what am I missing?.  iTunes opens on my computer. but doesn't recognize my device. when I click on help. it says an "unknown error has occurred. your computer is not connected to internet. please check your internet connection and try again later". I don't know what to do? could you please help me? thank you so much for your help and time.
    when I update the usb driver (C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.Double-click the usbaapl file.) I followed the procedure from this site. http://support.apple.com/kb/TS1538 when I finished, it says "the specified location does not contain information about your software"
    I did the apple's diagnostics test on my computer. I'm pasting the result for your info.
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.6.3.25
    QuickTime not available
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0013AC2C08548378
    Current user is an administrator.
    The current local date and time is 2012-06-28 15:23:45.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel(R) G41 Express Chipset
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D85300A1-330D-41ED-AC5A-EC032B22FBF0}
    Description:            Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.3
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Thu Jun 28 15:17:19 2012
    Lease Expires:       Fri Jun 29 03:17:19 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    iTunes has never successfully accessed the iTunes Store.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    G: Optiarc DVD RW AD-7220A, Rev 1.01
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • Creating a site for mobile devices

    Good morning,
    I have a number of questions relating to the creation of a
    site for mobile devices. My client has given me the assignment to
    re-design his current website, and to also create a sub-site
    suitable for mobiles. I have spent a number of hours looking around
    on the Internet and trying to gain a better understanding of these
    issues. Still, a number of questions remain. if you can give me any
    additional understanding, that would be great.
    Question 1:
    Is my understanding correct: I basically need to create two
    sites, one for the wide-screen browser, and one for the mobile
    browser? I can direct visitors to the mobile site using a CSS or
    javascript link - if their browser identifies them as a mobile
    browser?
    Question 2
    Mobile devices come in all sorts of shapes and sizes and
    versions. PDA\s and iPhone's have different screensizes and
    resolutions that smart--phones, which in turn are different again
    from older and simpler phones. Should I design a site for a number
    of different types of phones? That would a huge amount of work...
    Question 3
    I also own Device Central, an App which I should think is
    very useful in this situation. But I fail to understand it! OK, so
    I can see what my photo or website or flash file looks like on my
    Nokia N73 - but I am not designing specifically for that phone. I
    also want my design to look good on all the other phones! My client
    needs a website that is not tailored to one phone, but to all
    phones.
    Question 4
    And why does Device Central not have profiles for the iPhone?
    I would think it is popular enough to warrant its own profile... (I
    post this from the Netherlands, where the iPhone is not carried
    yet, and so I have only ever held one in my hand). Is this because
    the iphone can see regular sites just fine?
    Question 5
    How does Dreamweaver help me build a mobile site?
    Question 6
    My client wants to show video on his website. In fact, that's
    what this website is all about: showing sports-videos from high
    profile sporting events. Which video-formats are most suitable?
    Question 7
    Do all mobile phones support flash? Or only a few? Or none?
    It seems to me that a flash website would allow for more creativity
    in the design.
    Thanks for any help you can give. Any resources you could
    point me to are also very welcome...
    Sincerely,
    Rogier Bos
    Rotterdam, The Netherlands

    Macnimation wrote:
    > Hi,
    >
    > I'm experimenting with creating a small site off a
    standard site, for mobile
    > phone/devices.
    >
    > Basically, I want to load a basic list page, which has
    links to pages that
    > will display and run flash movies.
    >
    > The flash movies, in FLV format are already at 640 x 480
    which run fine in the
    > main site.
    >
    > Is it simply to resize the movies to fit the mobile
    content size , or will
    > they "auto" resize?
    >
    > Do I have to chnage the webserver configuration in
    anyway, its a standard IIS
    > site at the moment, but MySQL with apache is also an
    option.
    >
    > Would standard html do or would the pages have to be
    done using xhtml or wml?
    >
    > I would like if possible to get this infomration first
    before starting it, so
    > I can possibly reduce delays.
    >
    > Any help or pointers to tutorials would be grateful
    >
    I'd like to check out the PDA scene some day soon, too. In
    the meantime,
    there's a recent discussion of this topic here:
    http://www.sitepoint.com/forums/showthread.php?p=3288343#post3288343
    www.geobop.org - Family Websites
    www.invisible-republic.org - Adult political websites (Mature
    adults only)

  • Speed on PC alot slower than on mobile devices

    Hi, I had infinity installed today and am achieving 75down20up on all of my mobile devices. However my PC will not get over about 38 down and 15 up. This is despite me trying wired/wifi and powerline adaptors.
    Any advice? I am a fairly competent PC user so have troubleshooted as far as I can and I am getting inconsistent at best results.
    I would put this down to the connection stabilising over the first few days but that doesnt explain why mobile devices are consistently achieving 75/20.
    Any help would be greatly appreciated

    Use this speed tester then carry out the further diagnostics and post back a screen shot of all the results including your IP profile for up and down. This test must be done with a wired connection.
    http://speedtest.btwholesale.com/
    As you will have a Homehub 5 can you also post the stats from 1-12 by logging onto the Homehub management pages then troubleshooting > helpdesk. http://bthomehub.home/

  • This phone can not be used because the apple mobile device service is not started

    i plug my iphone into my computer and the message this phone can not be used because the apple mobile device service is not started pops up and wont let me download any music onto my phone. what can i do to make that stop happening?

    See Here
    http://support.apple.com/kb/TS1567

  • ITunes Match; a waste of time for mobile devices and the impatient

    I recently subscribed to itunes match, aside from being able to upgrade a portion of my lower bitrate files, I am extremely dissapointed (as are many others I've read about having the same issues.) 
    First, getting all of my music on the server was a nightmare.  I spent way more time then I'd like to admit tricking iTunes into accepting my data.  Quite a bit of my library is in fact available for purchase in the itunes store, but only portions of most of the albums actually matched - the remaining portions had to upload. Fine, I'm okay with that aside from not being able to upgrade albums in their entirety, now I have some tracks at 256, others in the same album at 128 or whatever - I decided to selectively chose alums/tracks that I really cared about or didn't feel like re importing from disc in a few cases.  Fine.. annoying, but not a total deal breaker.
    I was finally able to figure out how (without apples help btw.. they didn't know this procedure when I spent an hour or so on the chat, screen sharing with a "specialisdt")  to trick itunes into uploadeing all "waiting" tracks by doing the AAC conversion myself manually and then replacing the compressed data locally with apple lossless files (both m4a files) while retainging the compressed data on the cloud.  fine.. I enjoy trouble shooting and problem solving, I was actually psyched to figure it out and be able to retain my high quality files locally without having doubles or redundant data in an archive elsewhere not within the iTunes data base.  Fine. apple lossless is no wav, aiff, but I can compramise also in order to imbed meta data which wav is not able to do.
    What I want is access to my entire library and to be able to either stream songs over wifi or 4g and/or download locally for when I'm off network in the boonies, etc.  *side note: don't anyone tell me this isn't a streaming service and that it only downloads to the device because it in fact does... it's just intollerably slow more often than not.  Now I can deal with that, that is either my cellular provider throttling me, or it's Apple's servers.  I will assume a bit of both.  also, don't tell me that matched content downloads faster then uploaded content.. that's BS, I've run the tests on multiple devices and there is no consitacy to it.. it all depends on the traffic on iCloud servers, wireless towers and size of the file/leanght of track, etc.  Fine.
    I've run the speed test, I've rebooted divices.  I've reset/confirmed/adjusted network setting.. I've done most of what I could do on my end as a user.  I can't seemlessly stream data on my unlimmited data plan from at&t from apple.. fine.. I get it.. regarless of my slow streaming issues - it's a first world problem.. whatever, I can deal. 
    My biggest gripe is that when I download either matched songs or uploaded content, it's is painfully slow to do so.. it's a waste of time.. manging the library on mobile devices takes forward thought and plenty of patience.. I might as well do this at home tethered to my desktop - convert to 128 to save space and accept my choices and deal with what I have loacally for the time when I'm out and about.   Now whren I buy something from apple over the 4g network or even the edge network,... &*^% downloads lickity split.. *** apple .. fine, it's big business.. I get it.. I for one would have paid 100 bucks a year if this service worked as advertised.. maybe more.,.. it's awesome in  theory, but is not realy for the limelight even still 2 years after the release.. hopefully it'll get better soon...
    Now this works great in my home over laptop, apple tv, but over ipad and iphone.. not so much.. actually working fine right now as long as I don't change the track abruptly... figures after this long rant.... once I continue on my day I'm sure it'll go back to being a pain.
    I'm going to use it at home, maybe on the run very ocasionally.. I guess that's what Apple thought we'd want, but they have been so misleading with this, and so abscent with trouble shooting an technical support that I've given up.. if I wasn't so in love with thier UI's and hardware (for the most part) I'd walk in time since steve jobs is now gone.
    unless you want to wrestle with it for hours and hours, or just want to upgrade your low quality files and bounce.. don't waste your time people.. ^$^$ all that noise
    It's too bad Samsung assinated Steve Jobs.. he'd never let this service be released uptil it was ready.   in the future I may have to go to the dark side and get a galaxy tab and smart phone, a Dell.. window vista.. naaaa just kidding.  *** apple.. p,lease sort your ^$%&7 out.
    Done and done. 
    please fix this Apple, I want to love iTunes match, I really do.

    Firstly, this is a user-to-user forum: you're not talking to Apple here.
    Just saying it 'doesn't work' doesn't make it possible to offer any cogent suggestion - one would need a lot more detail on what you've tried and what the result have been - including your operating system details. However if the thing is actually faulty - this is rare, it works fine for most people, but it can happen - then plainly you need to contact the people you bought it from, or take it into an Apple Store if you can, and ask for a replacement or repair.

Maybe you are looking for

  • Since iOS 8.1.2 upgrade problems with yahoo mail via apple mail client

    Since the upgrade to iOS 8.1.2 on my iPad I'm having issues with my yahoo mail account when using the apple mail client. I can send emails but cannot receive them. When I use the yahoo mail app there is no problem Sending or receiving. I have deleted

  • Can one have multiple iCloud Apple IDs?

    Hello. Would I automatically lose my current iCloud Apple ID if I signed up for a new one? And if the answer is 'No', what is the maximum number of iCloud email addresses that one can have?

  • Bookmarks don't sync from PC to myAndroid phone or tablet.

    version 32.0.2 FF on PC, tablet & phone are all up to date. New sync is being used on all 3 devices. FF says sync is working, but: the only bookmarks that sync are from my android phone to android tablet. Nearly all of my bookmarks (thousands) are on

  • Message type for idoc PROJECT01

    Hi ..      How to send a PROJECT01 idoc from one r/3 to another or third party system.What is the message type for the idoc and what are the configurations required. Tharun

  • Error when initiating Application Server Jdeveloper

    Gentlemen, He forgives for the English, he is of Brazil and alone I say Portuguese. I go to try to explain my problem, more I do not know the Jdeveloper very, I am beginning. What this happening is following, when I set in motion the RUN in the page