Doubt regarding HTTP Live Streaming for windows phone 8.1 silverlight app?

Hi,
I am developing a Windows phone 8.1 silverlight app.
I want to add live streaming youtube channel , thats why I used  https://phonesm.codeplex.com/ this link as a reference , and I am able to play the links given in the samples, but I am unable to play my link https://www.youtube.com/watch?v=p2GF-QQS6n0
I am getting 3108 unable to play media error with my link,
My question Is there any need of streaming server ?
If yes can anyone help how to  create the streaming server.
Thanks....
Suresh.M

Hi Suresh.M
As I can see a similar question on the Windows Phone Streaming Media discussion:
https://phonesm.codeplex.com/discussions/545737
You may need check into the call stack and find out what is the root cause, for instance if there any chance that your phone cannot reach to the video address, and did you enable some network capabilities, etc.
--James
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to play live streaming in windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight app. In my I want to show live streaming youtube channel , I think it is not possible, 
    Actually that youtube channel is a television channel , I want to stream that live tv in my app.(I tried to load youtube channel in webbrowser in iframe tag but it is not opening)
    Anybody help me how to play live tv or live streaming in my app,
    Thanks..
    Suresh.M

    Hello,
    You will likely need to write a custom
    MediaStreamSource that can access the media stream and parse it. Windows Phone supports h.264 natively and as long as the site serves up a media stream that contains h.264 frames you can parse it and have our built in decoder decode and display it. You
    will need to have intimate knowledge of the streaming protocol used by the website that you are trying to play. You must also make sure that the website is not using protected content. IANAL so I would recommend that you have your local law professional
    (lawyer) review the licensing of the website that you are attempting to connect to and stream from before continuing your development. Your lawyer can make sure make sure their licensing allows you to do this.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Doubt regarding facebook integration for windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight application . For my application I integrated the facebook login. For this facebook integration I used the login with facebook app method.
    My doubt is after getting the app id from the dev center , I updated the appid at developers.facebook.com , wmmanifest.xml (In extensions protocol (msft-appid without dashes)) . Or do I need to change the product id in the place holder also , I tried to
    change the productid also but I am getting error like some signature is wrong try with different signature. I am confused how to do it .
    Any help,
    Thanks...
    Suresh.M

    Hi Suresh,
    According to your description, I assume you want to complete facebook configuration in windows phone silverlight app. Please refer to the following link to see how.
    http://facebooksdk.net/docs/phone/config/.
    You can find code sample from
    https://github.com/facebook-csharp-sdk/facebook-winclient-sdk/tree/master/Samples.
    Facebook API is third-party library and it is our of our support range. You can post questions on here.
    https://github.com/facebook-csharp-sdk/facebook-winclient-sdk/issues.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • How to perform click action on the notification received in windows phone 8.1 silverlight app?

    Hi,
    I am developing a windows phone 8.1 silverlight app , I added push notification service to my app and I am able to receive notifications . 
    My question is when the app is not opened and the notification is received , if the user clicks on the notification it is directly taking to the app ,
    but I want to redirect it to a specific page in my app How is it possible?
    Any help..
    Thanks..
    Suresh.M

    Thanks for your information
    but where to write the rootframe.urimapper  , I think it is in app.xaml.cs , If I write urimapper , how do I know I am navigating from notificaition?
    Suresh.M
    Why you need to know it is from notification? If you must need to know this, try to check deep link
    Best Regards,
    Please remember to mark the replies as answers if they help

  • How to publish Windows Phone 8.1 Silverlight app to Windows Phone store?

    I created Windows Phone 8.1 Silverlight app, and I can't to upload it into WP store. I want to use Create
    App Packages tool in Visual Studio 2013 Professional, but it's impossible for Silverlight apps. I read many guides
    on dev.windows.com. It's necessary to upload only .appx, .appxbundleor .appxupload files,
    but I have .xap file
    only in Bin\ARM\Release folder.
    May anyone help me?

    Appx packages are only for Windows Runtime apps. Windows Phone Silverlight apps use xap files. The Windows Phone Store will accept either xap (for Silverlight) or appx (for Runtime) apps.
    I discussed this in more detail in my blog entry: Why can’t I create an app package? Windows Phone Xap vs. Appx   

  • HTTP Live Streaming for Apple IOS devices

    HI,
    We have installed FMS 4.5, including Apache 2.2, on a 64-bit Windows 2008 R2 server following the instructions given in the video that can be viewed here:
    http://www.adobe.com/devnet/flashmediaserver/articles/install-verify.html
    Browsing to the test page for the server works fine for HTTP Dynamic Streaming and RTMP Dynamic Streaming samples.  However, when we try to use the HTTP Live streaming samples on the test web page on an iPad via AnyConnect, we only see a blank page with a small Abobe Flash icon in the top left hand corner which is basically saying that Flash has been detected on the page and is not supported by the iPad.
    The above video shows HLS working on an iPad with no additional installation steps.  Can anyone hep?

    Found the answer
    The home page on the Adobe server has an error in its javascript.
    if (uagent.search('iphone') != -1 || uagent.search('ipad') != -1) {
    should be
    if (uagent.search('iPhone') != -1 || uagent.search('iPad') != -1) {
    ....capital P's.

  • I cant find my sqlite dtabase created for windows phone 8.1 phonegap app in visual stdio community 2013?

    Hello...
    I am creating a windows phone 8.1 phoegap app.It is using local databse called websql using this link.I created app and datas can be fetch from offline.It is working
    very well
    But the problem is i need to see the databse i created.Where to find the databse.In visual studio there is no option to see the databse.
    There is no editor.
    Please tell me where it is stored?

    Hello,
    Based on my knowledge, the db file usually store in storage folder. You can use the following code snippet to find it.
    WinJS.Application.local.exists(dbname).done(
    function (found)
    if (!found) {
    //not found
    There is sample usage in the link you provided, I would recommend you have a look at this.
    https://github.com/MSOpenTech/cordova-plugin-websql.
    If not help, please post more information about your scenario.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • Inking for Windows Phone 8.1 (Not Silverlight)

    Is there any way to use Inking for Windows phone 8.1 application. I am able to use it in Silverlight application for freehand drawing.
    But is there anything available to use for this purpose in WinRT?

    Hi Morichi,
    As far as I known in Windows Phone 8.1 Runtime there is no such a Inking api or control as in Windows Phone 8.1 Silverlight app. If you want to implement the inking function in Windows phone 8.1 Runtime application, please try to refer to
    the @Rob Caplan - MSFT's reply in this thread:
    http://stackoverflow.com/questions/28862500/inking-for-windows-phone-8-1-not-silverlight .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using http live streaming

    Hello.  For a project I am working on, I need to design a secure streaming system for audio files such that they can be streamed but not downloaded (due to copy right issues).  I was looking into http live streaming as a possible solution.  However, I am new to developing web applications and the like and was hoping for some help, maybe links to sample code, how to use http live streaming for my server/in my code, etc.  In particular, I was hopping to make the streaming available to firefox, safari, and apple mobile devices.  I am hoping to develop this using html 5.
    Thanks.

    I have same issue with 64bit Safari 5.1 and 10.6.8.
    Video plays if not protected. If Protected says "Loading" and never plays.
    With 32bit Safari looks the same but...
    There is a login window behind the Safari window. If I find it and login, mp4 plays.
    Is quite annoying. Any fixes?

  • HTTP Live streaming test in Flash Player, HTML5 player, iphone, android and other smart phones.

    Hi,
    Can anyone please tell me how can I play http live streaming from FMLE 3.2 to Flash player, iphone, ipdad, HTML5 player, Android and other devices?
    I have tried my best to play live streaming usine FMLE 3.2 with help of "http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html" but not able to play video using HTTP.
    When I tried to play url-  "http://localhost/hds-live/livepkgr/_definst_/liveevent/livestream.f4m" even in in Strobe Media Player it was showing "Buffering" that's it. But I can play same RTMP URL in Flash AS3 using the netstream very fine.
    Now I want to test the livepkgr content via HTTP to Flash Player, HTML5 Player (on Web browser and smartphones), iphone and other devices.
    Thanks
    Best regards,
    Sunil Kumar

    Hi Sunil,
    It's difficult to debug an issue when you don't have access to the machine and you can't see what's happening, so I request you to please have a little patience.
    For playback just check the following steps and make sure if you have followed them :
    1) Delete the streams folder and any .stream file in the livepkgr
    2) Restart FMS
    3) Make sure you have a crossdomain.xml under root_install/webroot
    4) Publish a stream from FMLE as 'livestream?adbe-live-event=liveevent'
    5) Use this player to playback the stream : http://osmf.org/dev/2.0gm/StrobeMediaPlayback.html?src=http://<your-ip>/hds-live/livepkgr/_definst_/liveevent/livestream.f4m
    If there is no playback, here are some checks you can do :
    1) Request for the http://<your-ip>/hds-live/livepkgr/_definst_/liveevent/livestream.f4m in your browser. You should receive an xml that looks something like this :
    <?xml version="1.0" encoding="UTF-8" ?>
         <manifest xmlns="http://ns.adobe.com/f4m/1.0">
              <id>livepkgr/events/_definst_/liveevent</id>
                      <mimeType />
              <streamType>live</streamType>
              <duration>0</duration>
              <bootstrapInfo profile="named" url="../../../streams/livepkgr/events/_definst_/liveevent/livestream.bootstrap" id="bootstrap7158" />
              <media streamId="livestream" url="../../../streams/livepkgr/events/_definst_/liveevent/livestream" bootstrapInfoId="bootstrap7158">  
                          <metadata>AgAKb25NZXRhRGF0YQgAAAAAAAhkdXJhdGlvbgBAJUUeuFHrhQAFd2lkdGgAQHQAAAAAAA=</m etadata>
                </media>
    </manifest>
    2) Check the access log under Apache to see if the .f4m, .bootstrap and Frag files have been requested and delivered. If a particular entry has a status code of 200 then the file has been served by FMS. You can confirm the same on the client side using a software like fiddler.
    Coming to the player issue, a playback of *f4v via the vod directive is a progressive download, whereas playback of an *f4m file via hds-vod is HTTP streaming. 
    I have personally used Spark VideoPlayer and hence suggested the same.
    You need to add a component like :
    <s:VideoPlayer width="100%" height="30%" chromeColor="#CCCCCC" color="#000000"
                     fontSize="12"
                     source="http://<your-ip>/hds-live/livepkgr/_definst_/liveevent/livestream.f4m"
                        symbolColor="#000000"/>
    Let me know if any of these suggestions help.
    Thanks,
    Apurva

  • Main stream of the SQLite library for Windows phone development ?

    Hi, 
    I want to ask that for now Windows phone using SQLite to store data.
    And many suggested that installed a "sqlite-net" in nuget.
    However, I found that there is another "sqlite-net extensions" nuget which supports the "sqlite-net PCL" instead of "sqlite-net".
    So, I want to ask, "Will the PCL version become a main stream in Windows Phone ?".
    It will make me decide which library to develop with(the PCL version or not), please help me.
    Thanks a lot!

    I dont think we can predict which library will be come mainstream.    If you are building a cross platform solution the pcl sqlite library would be the better choice.I would use the library which has the most features you are looking for.

  • I require steps to converting or having my videos in HTTP LIVE STREAMING VIDEO for my App,its a requirement by apple that i cant seem to wrap my fingers around,thank you

    i require steps to converting or having my videos in HTTP LIVE STREAMING VIDEO for my App,its a requirement by apple that i cant seem to wrap my fingers around,thank you

    Maryrhire910 I am sorry that you are facing difficulty downloading and installing Photoshop Elements 12.  Are you downloading the installation files from Download Photoshop Elements products | 13, 12, 11, 10?  If so what specific error are you receiving?

  • Flash Player Support for HTTP Live Streaming?

    Does Flash Player 11 / Air for TV 3.0 support HTTP Live Streaming ?

    If you need help with posting messages in the forum there is a test forum available at http://forums.adobe.com/community/general/forum_comments/testing

  • No JavaScript Intellisense in Visual Studio Express 12 For Windows Phone

    I'm developing mobile app for windows phone using Windows phone 8 SDK (Visual Studio Express 12 For Windows Phone). I want to use code auto-Complete facilities when coding in Javascript. For that I need to use Intellisense for JS.
    According to my knowledge, To configure Intellisense according to my knowledge,It have navigate to the [Tools] > [Options] > Text Editor > JavaScript > IntelliSense >
    But in my [Tools] > [Options] > Text Editor > list there is No item called JavaScript.
    Please help me for solve this.

    Hi AmilaEranga,
    I try to test it in my side, I could get the JavaScript Text Editor in my side.
    So I doubt that it would be your VS IDE issue. If possible, please download it from the official site here:
    http://www.microsoft.com/en-us/download/details.aspx?id=30664
    And then repair your VS, test it again.
    Or you could run the following command lines with the Developer Command Prompt of VS2012:
    devenv /setup
    devenv.exe /InstallVSTemplates
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How is SQLite used for windows phone 8.1 in Visual Studio2013

    Hi, 
           I'm developing app on Windows 8.1 currently. Can any one please help me with the steps to proceed so that I can create a database using SQLite for windows phone 8.1 through Visual Studio2013.

    Hi SwetaSinha,
    Thank you for posting in MSDN forum.
    Since this forum is to discuss: Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help
    System, and Visual Studio Editor.
    Based on your issue, if you want to know how to create a database using SQLite, I suggest you can ask this issue directly to the  SQLite official website:
    http://www.sqlite.org/support.html, maybe you will get better support.
    In addition, since the SQLite is a extension tool for the Windows Phone 8.1, so I suggest you can post this case to the SQLite for Windows Phone 8.1:https://visualstudiogallery.msdn.microsoft.com/5d97faf6-39e3-4048-a0bc-adde2af75d1b,
    and then click “Q AND A”, you will get better support there.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for