How to serial composition with smooth streaming(ism/isml) media?

How to create serial composition with smooth streaming media in osmf player. Like I have smooth streaming media file and I want to play some specific section as single media element from it.
clip 1 contain 10-20 sec part
clip 2 conation 260-500 sec part
etc..
is that type of implementation supported in osmf player.

Customize Media encoder using MEF is not a simple thing...
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/a6de0da9-c065-433d-a443-057deb00735e/play-live-stream?forum=winappswithcsharp
http://blogs.iis.net/cenkd/archive/2012/03/28/How-to-build-your-first-html5-metro-style-smooth-streaming-player.aspx
Best Regards,
Please remember to mark the replies as answers if they help

Similar Messages

  • How do I composite with a matte and fill ?

    Hi all, If I have for example, a image of the desert for the background. And then I have a logo I want to add over it. And that logo comes with a matte and fill. How do I composite that over the desert image ? I've tried working with the (add image mask). But I cant fiqure it out.
    Again there are 2 seperate files for the matte and fill.
    Thanks for any replies

    Apply the image mask to the fill (select the fill layer, and choose Object > Add Image Mask). Then drag the matte layer into the well in the HUD (heads up display) and set it to Luma rather than the default of Alpha in the HUD's pop-up menu.

  • Nearly give up, how to play RTSP / HLS / Smooth Streaming in Visual Basic Language

    I know there are so many samples for playing RTSP / HLS / Smooth Streaming, but it really lacks supporting Visual Basic language, i really struggling to convert from C++ / C# into VB without errors, maybe it would be easier if i can find some VB
    examples for this situation, i really appreciated any help.. thanks

    Hi HiLLzX,
    Did you forget to using reference in VB or Import the namespace? See my current code, using Button click can play a test demo. Do not forget to reference SDk in your project.
    XAML:
    <Page
    x:Class="App242.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App242"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Button Content="Button" HorizontalAlignment="Left" Height="88" Margin="52,103,0,0" VerticalAlignment="Top" Width="138" Click="Button_Click"/>
    <MediaElement x:Name="mediaElement" HorizontalAlignment="Left" Height="427" Margin="409,127,0,0" VerticalAlignment="Top" Width="800"/>
    </Grid>
    </Page>
    VB:
    'using Windows.Media;
    Imports Windows.Media
    ' The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    ''' <summary>
    ''' An empty page that can be used on its own or navigated to within a Frame.
    ''' </summary>
    Public NotInheritable Class MainPage
    Inherits Page
    Private extensions As New MediaExtensionManager
    Private Sub Button_Click(sender As Object, e As RoutedEventArgs)
    mediaElement.Source = New Uri("http://mediadl.microsoft.com/mediadl/iisnet/smoothmedia/Experience/BigBuckBunny_720p.ism/Manifest")
    extensions.RegisterByteStreamHandler("Microsoft.Media.AdaptiveStreaming.SmoothByteStreamHandler", ".ism", "text/xml")
    extensions.RegisterByteStreamHandler("Microsoft.Media.AdaptiveStreaming.SmoothByteStreamHandler", ".ism", "application/vnd.ms-sstr+xml")
    mediaElement.Play()
    End Sub
    End Class
    --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.

  • Serial Composition with In/Out points

    I`ve asked that question a while back in the prerelease forum but did not made any progress since then so one more try.
    I would like to play a series of videos. For those videos i want to specify individual in and out points.
    So the first video should start at 0.30 and have a duration of 40 sec for example.
    So basically i want to create a playlist of media elements with in points and out points. The whole thing should look like it`s one video.
    So there should be one seek bar that scrubs over all video elements and gives me the correct video...
    Is this a supported scenario? If not will it be supported? If it`s already supported any help in getting me started would be welcome :-)
    Thanks
    Benjamin

    This is on our feature roadmap as subclip support, slated for inclusion in the Nov/Dec/Jan time frame.

  • How to record a live camera stream inside Adobe Media Server?

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

  • How to Use Adobe For TV Stream

    I Have a question How to make adobe with Tv Stream,i will googling but i don't see any question Exampla TV http://tvonlineindonesia.pathmo.com

    Could you ask a question in more detail?
    Do you want to use DRM with your streaming video?
    Or, you have a question how to use flash player for streaming video?
    Thanks,
    Hiroshi

  • How do I use edge commons composition loader to load multiple compositions with a next and back button?

    I am working on an interactive book and have set up each page as a separate composition in edge.
    I am using  the edge commons JS library to load multiple compositions into a main composition.
    You can see how this works here: Edge Commons - Extension Library for Edge Animate and Edge Reflow | EdgeDocks.com
    The way the edge commons tutorial is set up requires a button for each composition i want to load. I am interested in loading multiple compositions with a "next" and "back" button, and a "swipe left, "swipe right" gesture on the content symbol that each composition is loaded into. I also need the swipe features on the content symbol not to interfere with the interactive elements on the loaded composition.
    Please suggest a solution that will work without adding additional scripts beyond edge commons and jquery.

    Sort of. I'm using this code inside an action for a button symbol. But it doesn't work perfectly. Trying to debug it.
    Let me know if you have any luck.
    //Check to see if pageCounter already exists
    if (typeof EC.pageCounter === 'undefined') {
      // it doesn't exist so initialize it to first page
        EC.pageCounter = 2;
    //check if the page is only 1 digit -- patch for single digit
    if (EC.pageCounter < 9) {
       // it is, so we need to pad a 0 on the front.
      EC.pageCounterString = "0" + EC.pageCounter;
      //e.g.  01 ...09,11,12,13....115,222352,,....
    else {
      EC.pageCounterString = EC.pageCounter;
    EC.loadComposition(EC.pageCounterString + "/publish/web/" + EC.pageCounterString + ".html", sym.$("container"));
    EC.pageCounter = EC.pageCounter + 1;
    //TODO for back  -1

  • How to import MXF files to Final Cut Pro with smooth editing

    Summary: Follow this tutorial to learn how to import and edit MXF files in Final Cut Pro by converting MTS to FCP native format.
    If you have a Panasonic P2, Canon XF or Sony XDCAM series camcorder,
    you may be familiar with Material eXchange Format (MXF). Though MXF is a
    great video format to record high-definition videos, it is not easy to
    use in that they are not natively supported by most NLE systems like
    Final Cut Pro. In order to import MXF to FCP for editing, the easy workaround is to transcode MXF files to FCP compatible video formats.
    Along with some help from a top MXF Converter, it can be done. To
    help those who wanna edit MXF files in FCP without problems, here I
    share with you a simple guide on how to convert MXF files to edit in
    Final Cut Pro 6/7 or FCP X.
    First of all, downloading the App- Brorsoft MXF Converter for Mac
    Overall, the program is a professional yet easy-to-use MXF Converter
    on Mac (Mavericks included) which can not only convert XF100, Canon
    C300, XF105 and XF305, Panasonic P2 recorded MXF files, but also provide
    simple video editing functions for you. The MXF to FCP Converter not
    only can convert MXF to ProRes for FCP, but also can transcode MXF
    videos for editing in Avid MC, Adobe Premiere Pro, iMovie, FCE, etc.
    Just download it and follow the tutorial below to get the work done.
    Transcoding (P2) MXF files to ProRes for Final Cut Pro 6/7/X
    1. Import MXF files to the converter
    Launch the best MXF to FCP Converter, and then click the “add files” button to browse and import MXF videos from your camcorder or hard drive.
    2. Select FCP editable format
    Click the Format bar, and move mouse cursor to choose “Final Cut Pro > Apple ProRes 422 (*.mov)” as output format.
    Tips:
    a. Settings- click to set video
    resolution(1920×1080/1440×1080/1280×720/720×480), bitrate (from 1Mbps to
    20Mbps), frame rate (24p/30p)
    b. Editor (next to “Add” icon)- click to set deinterlace, trim, crop, add effect, attach subtitles, etc
    3. Start transcoding MXF video to FCP
    Click “Convert” button to start converting MXF files to Apple ProRes
    MOV for FCP 6/7/X under Mac OS. Once the MXF to ProRes 422 conversion
    is done, you can transfer MXF footage into Final Cut Pro (X) for editing
    smoothly on Mac with ease.
    Source:How to import MXF files to Final Cut Pro with smooth editing
    [quote] jacknjchn.tumblr.com/post/76914947404/cant-import-mxf-footage-to-fcp-transcoding-mxf-to-fcp [/quote]

    You may refer to this step by step guide on how to convert MXF to Final Cut Pro more supported Apple ProRes or DV at http://www.idealshare.net/imovie-fcp/mxf-final-cut-pro.html
    It also applies to convert MXF to other video or audio format. It even applies to convert other videos like AVCHD, MOD, TOD, AVI, and MPEG etc to FCP format.

  • My 3rd iphone. 3GS I did not buy from an apple store, how do I register this serial number with my apple account? it is already sync to it and will preform every function except email to my home computer. It says apple ID disabled

    My 3rd iphone is a 3GS. I did not buy this one from the apple store, how do I register this serial number with my apple account? it is already sync'd and it and will preform every function except email to my home computer. It says apple ID disabled, also will not update my apps, same promt apple id disabled.
    anyone know where I can go to register this phone? Thanks

    https://register.apple.com

  • HT201317 How do I use ICloud Photo stream on one computer with two differenet Apple Id's. My husband and I each have seperate ID's but one computer.

    How do I use ICloud Photo stream on one computer with two differenet Apple Id's. My husband and I each have seperate ID's but one computer.

    You have to have an iOS device (iPhone, iPad, iPod Touch) or Mac to create an iCloud account.  However, if you tell your friend to create a shared photo stream and turn on Public Website, he/she will then be able to send you a link that will allow you to view the photos on the internet using your web browser.  You would not be able to comment on the photos as this requires an iCloud account, but you would be able to view them.
    You can refer your friend to this link for assistance with this: http://help.apple.com/icloud/#mmc0cd7e99.

  • How to use Terminal with KeySpan USB serial adaptor cable?

    I own a KeySpan model USA-19HS to use with our MacBookPro when working on clients networking equipment that require serial communication. I have used ZTerm with excellent luck, but it costs, and is yet another application that I dont really want. I would like to know if any one out there has exacing instructions on how to use Terminal with this adaptor. If I could write a file that had, say, the couple most common settings (9600-8-n-1, 57600-8-n-1, et cetera) that I could simply click on, to open a new Terminal window with those settings, then simply close that, and open a new window (apple+n) in order to get back to a default settings terminal window. All feedback is most appreciated.
    Thanks so much, Jason Sjobeck

    Hi, Jason. Welcome to the Discussions.
    You wrote: "All feedback is most appreciated."OK.
    1. Have you considered discussing this with Keyspan Support?
    2. Have you read the section "OSX has Terminal.app - why do I need ZTerm?" on the ZTerm Home Page? That seems to explain why one needs an app like ZTerm.
    3. A quick search of Keyspan's FAQ for your product and terminal doesn't yield much more than how to find the serial ports using Terminal.
    Likewise, this Google search also yields little, and variants of that search of such weren't particularly help either.
    It appears your inquiry seems to be a somewhat esoteric topic.
    4. Apparently, ZTerm X is a bit long in the tooth and there's no Universal Binary for it. It sounds, however, like you've tried it running on your MBP under Rosetta, yes?
    5. In researching alternatives to ZTerm for you, I note the followng:• The comment from "Reverb" on this page suggests C-Kermit or Kermit as a free alternative.
    • This tip on Mac OS X Hints cites Minicom as another option.6. You may want to try your question on the Unix Discussion.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • How to play offline content using Smooth Streaming Client SDK for Windows 8.1 and/or Windows Phone 8.1

    Hi there,
    The Smooth Streaming Client SDK for Windows 8.1 at
    https://visualstudiogallery.msdn.microsoft.com/0170c67c-c183-4fee-8dd4-c2b44d710d40 specifies "Offline playback scenarios via Downloader Plugin*". I have been searching the web to find info on how to download content for offline playback scenarios
    using the Downloader Plugin, but can't find nothing, so is there any samples, API docs or blogs out there showing how to do this?
    Sandip Ahluwalia

    Hi Sandip,
    As stated in the sample you linked:
    For feedback and future requests please use IIS.net forum and related forum tread which can be accessed from
    here
    --Rob

  • Hi,  I lost my serial number for PS Elements11 following computer crash. Os is W7. I have the cd installation disc but there is no serial number with it or in the envelope  ..  How can I obtain the serial number please?     Thanks

    I lost my seriel number for PS Elements 11 following computer crash. Os is W7
    Peter Jones Aug 27, 2014 5:36 AM   
    Hi,
    I lost my serial number for PS Elements 11 following computer crash. Os is W7. I have the cd installation disc but there is no serial number with it or in the envelope
    How can I obtain the serial number please?
    Thanks

    If you registered the software you should be able to find the serial number thru your Adobe account online.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • TS3989 How can I share my Photo Stream with my family?

    How can I share my Photo Stream with my family?  I have a Macbook Pro and an IPhone, and The Cloud.  They have IPhones and Macbooks.

    At the moment you cannot share your Photo Stream. Just wait a couple of weeks until iOS 6 and Shared Photo Streams will be released: http://www.apple.com/ios/ios6/#photostreams

  • Adobe wont update my CS 5, it says i have the wrong serial number.  I have 2 serial numbers with my account, how do i switch the serial number in CS 5 to the other number?

    Adobe wont update my CS 5, it says i have the wrong serial number.  I have 2 serial numbers with my account, how do i switch the serial number in CS 5 to the other number?

    David,
    To switch, I am afraid you will have to reinstall using the other one.
    But that should hardly be necessary.
    If you can find no way, you may try a chat here,
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    or Adobe Support (phone) here,
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html

Maybe you are looking for

  • GMT time stamps interfere with calendar in 8.1.2

    How do I prevent GMT time stamps from interfering with my calendars? This did not occur until I upgraded to OS 8.1.2 I sync an iPod touch 5th generation with google calendars, and have done so with this device for over a year, and on a generation 3 d

  • Im not able to connect a new AEX to PI 7.1

    Hello, I have installed a new separate Advanced Adapter Engine Extended (AEX) to connect to my old PI 7.1. After installing I did the next basis task recommended by master guide. - PI self test for AEX Sheduler - PI self Test for AEX - PI test: AEX i

  • How to display integer in the JtextField?

    Dear All I need your guidance and your advise on the following. I am creating an applet and I don't know how to display the integer which I have. Basically, i need to disply the following into a JtextField. int d1 = (int) (Math.random() * 6) + 1; int

  • Variant Input Parameters with ActiveX Objects

    I've created an ActiveX library that exports a variety of objects using Visual C++ Version 6.0. I'm testing the methods and properties of these objects using both LabVIEW and Visual Basic clients. The problem I'm facing is that when testing under Lab

  • Server XI upgrade to XI R2

    Post Author: ehmd CA Forum: Migration to XI R2 I need to upgrade a Crystal Reports Server XI installation, which came with Crystal Reports Developer XI, to Crystal Reports Server XI R2. I cannot find any upgrade for Crystal Reports Server XI R2 on th