Live Streaming on WindowsPhone8 - xaml

I am developing wp8 app,In that i need to play live-streaming of video.Can any one give samples or tutorials to play live streaming on wp8 app.
I followed below link but its not working
https://playerframework.codeplex.com/wikipage?title=Getting%20Started:%20WP8%20Smooth%20Streaming%20Player
Regards
chandu

You have plenty of options:
Option 1: Here is a good tutorial that explains how to implement video streaming using the Smooth Streaming Client SDK: http://mingfeiy.com/building-windows-store-apps-smooth-streaming-client-sdk-beta-2
Option 2: Another approach is to use the Player Framework for Windows 8 Metro Style Applications To summarize, this is an open source, robust video player framework for Windows 8, HTML5, Silverlight, Windows Phone and other application platforms.
Find it here: http://www.geekchamp.com/marketplace/components/media-platform-player-framework
Option 3: A Simple Windows 8 Smooth Streaming Media Player with a Slider Bar Control as in here : http://code.msdn.microsoft.com/windowsapps/A-simple-Windows-8-Smooth-ee98f63a
To summarize: This sample shows how to use Smooth Streaming Client SDK for Windows 8 to create a Windows Store application to playback Smooth Streaming content. In the sample, the MediaElement control is used to show the media content, and a slider bar control is used to control the progress. That`s is from me, just pick one of the options and you are ready to go.

Related

How to use Windows.Media.Editing for Video Editing in Windows Phone 8.1?

In the latest release of Windows Phone microsoft comes with video editing feature, that provides the ability to edit the videos from the app.
I used the dll(Windows.Media.Editing) for editing videos in the app. I take help from the channel 9 video for creating basic video trimming effect. You can found channel 9 video on this link http://channel9.msdn.com/Events/Build/2014/2-555.
I searched on google but not found any code related to video editing feature like overlay text on video, apply filters effect, slow motion video and lots more as said by microsoft.
Can anyone please share code, links for editing video for Windows Phone 8.1?
Try Windows.Media.Effects. I found this the other day, which documents adding slow motion effects to a MediaCapture object. It's on the Windows Store site but applies to Windows Phone 8.1. Sorry I have not tried this code out, but there's some example code on the page and it might lead you to other resources, like stabilisation and rotation.
Try with this code
var composition = new MediaComposition();
var clip = await MediaClip.CreateFromImageFileAsync(file, TimeSpan.FromSeconds(1));
clip.VideoEffectDefinitions.Add(new VideoEffectDefinition("GrayscaleTransform.GrayscaleEffect")); composition.Clips.Add(clip);
using the GreyscaleTransform from http://code.msdn.microsoft.com/windowsapps/media-extensions-sample-7b466096/
Please note that I was not able to make this work outside the sample project because of some dependecies stuff that I don't understand

Play and pause media on windows mobile device from a separate app

I need to make an app for windows mobile devices which will play and pause media despite of the current player in use. Are there any system calls I can use or any API that I can refer?
Thank you in advance.
Use background audio player to achive your functionality, here is step by step implementation of your query
click here:

How to embed a video in a tile as a Web UI in Windows8 Application C#

I am currently developing an windows 8 application using C# and XAML. In the Grouped Item Page, I need to launch a video hosted on youtube.
The video needs to play in the tile, as an itenm.
Is there any way to do this?
Thanks...
No, there is no way to play a video in a tile. Tile updates must go through the predefined tile templates, and there is only the capability to display text and images in those templates.
I recently published a blog post on working with live tiles that might also be helpful.

How to compose an MMS with an audio file programmatically in iOS?

I'm interested in seeing working code for how to compose an SMS/MMS programmatically using the latest iOS in order to include a sound file, taking into consideration that if the file is too big (unsure of the max size at this time, any info is appreciated) an error should be displayed to the user.
I know this can be done, because the built-in recorder for the apple iphone allows for sending audio files via a text message if they're not too big. I'd like to understand how it achieves this programmatically, what sound formats are available to me and what are the limitations if any.
You are not allowed to send MMS through the MessageUI framework, which is the framework iOS allows developers to interact with the Messaging interface. Apple uses private APIs in their apps, and any use of private APIs = automatic rejection in the App Store.
Raphael is right, there is currently no way in the current iOS version (iOS 5) to send an MMS using the MessageUI framework.
One potential workaround we've found was to create a "send MMS" screen, where a user can attach their selected audio / pxt, and then when the user hits the send button, make a call to a 3rd party MMS gateway to deliver the audio / image.

How do access native APIs with Sencha Touch?

If I wanted to create a mobile app that allows the user to take pictures with their phone, record audio notes and record video, how would I do that?
I was browsing through the Sencha Touch 2 API and while I see documentation on video and audio files, it seems like it is just providing a way for me to access files stored on the phone - not actual triggers to record, or take pictures.
Am I missing something?
How would I do what I want?
In order for Sencha Touch to have access to your phone capabilities, you need to use a product like Phone Gap
Unless there is a HTML5 api for doing those sorts of things I don't think you can do that. I know on PhoneGap there are native extensions added into that platform for access to things like microphone, camera, etc. I don't know if Sencha Touch has added any of those sorts of extensions in order for you do this.
Just thinking out of the box here, but you might be able to put Sencha javascript into a Web View from within an Android Java process. Then the Java code could expose an object in its process as an extension point to the Javascript engine for access to Camera, Microphone, what not.