Is it possible to show live and vod in one stream?

hello
i am playing here with fms i want to make a sort of home
tv-channel
i have created ".swf-tv_set" for the end user wich connects
to my server
the question is: what techniques should i use (on server-side
maybe) to control what type of data (live or vod) is being streamed
to the user? i have also created "director's swf" to switch between
output data, but how can i switch live/vod in one stream, to which
the user is already connected?
thank you in advance.

Hi mexxik,
To switch between VOD and LIVE, you 're advised to code it at
the SSAS as long as the LIVE stream is not coming from Flash Media
Encoder.
The SSAS could be something like below:
application.userStream= Stream.get("currentStream");
application.userStream.setBufferTime(0);
application.userStream.play(videoSignal2,-1);
Sidney

Similar Messages

  • [svn:osmf:] 15252: 1) SMILPlugin - SMILMediaGenerator class modified to support both live and vod smil files .

    Revision: 15252
    Revision: 15252
    Author:   [email protected]
    Date:     2010-04-06 16:57:34 -0700 (Tue, 06 Apr 2010)
    Log Message:
    1) SMILPlugin - SMILMediaGenerator class modified to support both live and vod smil files. SMILLoader modified to retain original resource metadata.
    2) AkamaiBasicStreamingPlugin refactored. This includes improved support for all types of streams while the plugin is loaded, added support for plugin metadata that can override built in defaults for a) live stream time out; b) whether or not the plugin should try to reconnect to a live stream if both primary and secondary encoders fail; c) the interval at which the retry should occur.  Added support for resource metadata for specifying connect-level and stream-level auth tokens so that these tokens do not need to be part of the URL (although this is acceptable also).
    3) AkamaiPluginSample app updated to support auth tokens which are not part of the URL (these are passed to the Akamai plugin via resource metadata).
    Modified Paths:
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/.actionScriptProperties
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml
        osmf/trunk/plugins/SMILPlugin/org/osmf/smil/loader/SMILLoader.as
        osmf/trunk/plugins/SMILPlugin/org/osmf/smil/media/SMILMediaGenerator.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/.actionScriptProperties
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/AkamaiBasicStreamingPlugin.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/AkamaiBasicStreaming PluginInfo.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/net/AkamaiNetConnect ion.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/net/AkamaiNetConnect ionFactory.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/net/AkamaiNetLoader. as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/net/AkamaiNetStream. as
    Removed Paths:
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/events/

  • Is it possible to copy formats and styles from one document to another?

    Is it possible to copy formats and styles from one document to another?
    Or use a commen styledocument as a masterdocument?

    Only by creating a template with what you want.
    Apple has removed the ability to import styles inPAges 5 along with almost 100 other features.
    Peter

  • Possible to show live data within Performance Widget??

    Hi, I'm trying to create a dashboard which features live data, for example top 10 CPU for windows 2012 servers. However it seems that any performance data is pulled from the DW db and is averaged over and hour or more. I don't want a historical average,
    but rather a widget which updates every * minutes and shows LIVE cpu data from that point in time. No graphs, just a percentage number for each of the top 10 windows 2012 servers consuming cpu.
    Anyone know if this is possible?? It seems that any performance widgets pull data from the DW db rather than the OpsMan main db..
    Cheers,
    Max.

    Hi 
    SCOM write data in parallel to SCOM DB and DW , 
    The chart is optimized to show no more than 100 data points per line to improve querying and rendering performance. It is important to consider this when configuring the time range for the following reasons:
    If the time range is less than 100 hours the widget will show raw data from the data warehouse
    If the time range is between 100 hours and 100 days the widget will show hourly aggregated data
    If the time range is greater than 100 days the widget will show daily aggregated data
    In addition, in order to optimize rendering performance, if the time range is 2 weeks (336 hours) the query will return 336 hourly data points, but the widget will reduce the number of points in the resulting line to approximately 100 points. This is very
    similar to what PerfMon does in Windows.
    you can select 100 minuts as time range to see the data for every min.
    Regards
    sridhar v

  • Dimension only query to show manager and employees in one row

    Hi Gurus,
    I am creating a dimension only report. This report will show managers and their direct reportees. Since one manager can have several employees working under him, I am getting one row in the report for each employee. But our end users want employees to appear as comma seperated value for the manager. Thus each manager will have one and only one record in the report
    Current
    ======
    Manager Employee
    M1     E1
    M1     E2
    M1     E3
    Expected
    =======
    Manager Employee
    M1     E1, E2, E3
    Env : OBIEE 10.1.3.4 & Oracle 10.2.0.3.0
    Thanks for your help in advance

    Google ask Tom for string aggregation - there is a listagg equivalent available there, create on your DB then follow the same principal as the listagg / evaluate example.
    regards,
    Robert.

  • SAP SQL: Show Invoices and Credits in one table

    Hi,
    iam searching for a query wich show invoces and credits as negative amount. How is that realisable?
    Example:
    Customer
    ZIPCODE
    ITEMCODE
    DESCRIPTION
    SHIP
    Price after discount
    total price
    freetext
    quantity
    Example 1
    45449
    5464
    something 1
    01.01.2015
    20
    40
    text
    2
    Example 2
    654564
    65465
    something special
    15.02.2015
    -10
    -20
    text
    2
    SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
    ??UNION ALL?? AND?  MINUS - ???
    SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM ORIN T0  INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY  T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
    Who can help??

    Hi,
    Try this query:
    SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], (T1.[Price] * T1.[Quantity]), T1.[FreeTxt], T1.[Quantity] FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
    UNION ALL
    SELECT T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], -(T1.[Price] * T1.[Quantity]), T1.[FreeTxt], -T1.[Quantity] FROM ORIN T0  INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OCRD T2 ON T0.CardCode = T2.CardCode INNER JOIN CRD1 T3 ON T2.CardCode = T3.CardCode WHERE CONVERT(nvarchar(8), T1.ShipDate, 112) BETWEEN '[%FromDate]' AND '[%ToDate]' GROUP BY  T0.[DocNum], T0.[CardName], T3.[ZipCode], T1.[ItemCode], T1.[Dscription], T1.[ShipDate], T1.[Price], T1.[FreeTxt], T1.[Quantity]
    Thanks & Regards,
    Nagarajan

  • How to show English and Arabic in one JTextPane

    Hi,
    Does anyone know how to display English and Arabic in one JTextPane? For English the orientation is left to right while it's right to left for Arabic. So the result might be like:
    hello                    
                سالتك ليتم الرد 
    bye                                             Thanks!
    Alex
    Edited by: alex_46 on Aug 31, 2009 7:54 AM
    Edited by: alex_46 on Aug 31, 2009 7:56 AM

    I think you should be able to do it like this (very psuedo):
    set the pane type to html,
    for your text, have a String with something like:
    <html>
    <div align="left">english</div>
    <div align="right">arabic</div>
    </html>I don't know the exact html for this but something like the above.
    Then set the whole string into your pane.
    patumaire

  • Is it possible to put (9iAS and 8i) in one server box?

    I'm trying built a testing enviroment at home. I only have 1 server win2000 and I have installed 8i on it already. Can I also install 9iAS to have both the database server and application server together?
    Thanks
    Wenchel
    null

    In what order did you install these products and what about the Oracle homes and their directories. I'll appreciate if you can provide this info 'cos I have tried to do this installation (one box) without success we had to rely on the separate boxes.

  • Is it possible to configure transaction and merge replication one database as a publisher?

    Hi All,
    We have a requirement to configure replication between the servers and its plan is as fallows:
    A------>B -- One way transactional replication ---  Already Configured
    A------> C --Merge Replication (Both ways)--- This is in plan
    1) Our requirement to configure Merge replication is to allow multiple users to access both publisher and subscriber databases. Configuring Merge replication with a combination of Transactional replication is correct or do we end up facing issues?
    2) A to B transactional replication is already configured so if we configure merge replication between A to C will effect existing replication?
    Please let us know if you need any details on this. Thank You.
    Grateful to your time and support. Regards, Shiva

    Hi Sir,
    Thanks for the information. But I have small doubt, "best to use merge all the way" is that mean you recommend to use Merge replication for all the servers.
    A------>B --
    Merge Replication (Both ways) 
    A------> C --Merge Replication (Both ways)
    Please correct me if I am wrong
    Grateful to your time and support. Regards, Shiva

  • My Addons toolbar will not show up and my DvD video soft toolbar is blank! How can I fix this?

    I went under view and then toolbars to check mark the box for my addons toolbar and for the dvdvideo toolbar. The addons one won't even show up and the other one, which i am not sure what it is for, and is blank!

    http://kb.mozillazine.org/Corrupt_localstore.rdf

  • 2 Apple TV's, one streams and one syncs. I want both to stream!

    I bought an Apple TV a long time ago, version 1.0, It was setup to stream and working great. I then bought another Apple TV with version 2.0. This Apple TV will only sync and I want it to stream. Both are running version 2.1 and the original one streams like I want but the second syncs and I can't stand that.
    I've gotten the syncing Apple TV to sync ONLY the directory and not transfer files but every time I add a new file I have to manually sync it. I also have an iPod that I sync to. In order to fit what I want on the iPod I have to uncheck some files in the iTunes list. When I do this, the second Apple TV syncs and drops anything that isn't checked.
    This is a big pain.
    If I can just stream to the second Apple TV just like the first one, and sync to my iPod, I would be happy. How do I setup the second Apple TV to stream in version 2.0, like the other one.
    Again, the first Apple TV was set to stream when it was running version 1.0. Then when it was updated it retained those settings. I can't find anywhere in 2.0 to set it to stream and not sync.
    iMac ----> AirPort Extreme ----> Apple TV 1
    ----> Apple TV 2
    OS X = 10.5.3
    iTunes = 7.7.1
    Apple TV = 2.1
    Does anyone know how to force streaming?

    Hi.
    I have two identical Apple TVs, version 2.0. One is set up in my bedroom and one in the main living room.
    The bedroom connection is as follow:
    Cable modem > AirPort Extreme Base Station > Apple TV (all via wired ethernet cable; Another ethernet cable goes to the iMac)
    Living room:
    Apple TV on my wireless broadband access.
    I am able to sync a selected TV shows I bought and want to watch on both devices, of course my bedroom's Apple TV's sync speed is faster. I am also able to stream my entire iTunes song playlists, other TV shows etc.
    *Bear in mind your iPhoto collection, or albums, will not stream. They can only be sync.*
    At first during the initial set up, I did ran into problem when I was not able to see all my song playlists etc in my living room's Apple TV. I had to "re-initialized" and re-setup the whole thing to get it work.
    Maybe you could try that?
    Cheers

  • How to use "start" and "duration" with HLS stream

    Hi all,
    is it possible to use "start" and "stop" with HLS stream like rtmp stream?
    If yes, how?
    thanks in advance.

    Hi,
    This is completely player side fucntionality you are asking for. However, I guess default player that comes on safari (iPad), quicktime has the player timeline with stop and start option. But if not, you can create your custom player using exposed api of AVPlayer. Check-out AVPlayer api's.
    FMS, by nature of protocol will respect the request to get the data(in case of client-play-start)  and will not automatically push the data to the client if not asked for by the client (as in case of client-play-stop).
    Thanks

  • Passing serialized object and data as byte stream over same stream

    I am writing a chat program, I am keeping online user List as Vector A would like to pass online user List to client as Vector object also the client message is sended as byte stream. Is it possible to pass object and data as byte stream over the same stream.

    I am writing a chat program, I am keeping online user
    List as Vector A would like to pass online user List
    to client as Vector object also the client message is
    sended as byte stream. Is it possible to pass object
    and data as byte stream over the same stream.Why are you sending the client message as a byte stream?
    String seems a much more logical type. I would assume that you're reading strings from one client, and printing them on the others. If you translate to bytes in the middle, you're going to have to ensure that you decode those streams correctly on the other side.
    And if I were implementing this, I probably wouldn't send the raw Vector or List ... instead, I'd create a Message object, which wraps the Vector/String, and a MessageDispatcher interface, which the client implements to handle incoming messages.

  • Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?

    Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?
    For example, say there's a SharePoint installation dedicated to particular (custom) SharePoint site. The users go to the site to carry out their tasks. There's no 'My Site' set up in this installation (and for other reasons I'm told it's not an option).
    Is it possible to show a web part here that shows the user's recent activity? The built-in web part for this fails with the error 'Invalid URI: The URI is empty', and the details of it appear to say it's looking for the user's My Site to find out what to show:
    SPMicrofeedContext.SetMySiteHostForContext failed System.UriFormatException: Invalid URI: The URI is empty.     at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)     at Microsoft.Office.Server.Microfeed.SPMicrofeedContext.SetMySiteHostForContext()
    So, while I'd be happy to write a web part (or app part) to display the information instead of using the default part, I'm not sure SharePoint is even storing the activity in a way I can access.
    Some pages like the following: http://sharepointmystery.com/2012/07/22/activity-feeds-in-sharepoint-2013/ make me think it won't be possible - it says: 'The major change from 2010 is that all the [activity] content is stored in the user’s personal site, not
    in a common database.'
    Are activity feeds dependent on 'My Sites' or is there a way to access the information when 'My Sites' is not present in the deployment? I can't find a definitive answer in Microsoft's documentation.

    To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
    Interesting question - thanks for that. Until now I didn't realise there was a difference.
    The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
    Many thanks,
        Geoff

  • How can i create a simple netweaver portal page that shows text and images?

    Hi,
    i have a simple question or maybe it's not so simple.
    I am completly new to SAP Netweaver 2004s Portal. At the moment i'm trying to understand the struture of the whole thing. I already know how to create roles, worksets and pages and i know how to combine the different elements so a user can acces them.
    And now i want to create a simple portal page that shows text and images. Is it possible to create such a simple page with the portal content studio? What iView do i have to use?
    (I just want to create a start page with a welcome text on it.)

    Marc
    Considering that you would any ways go ahead with complex development from this simple start page I recommend create a Web dynpro Iview for your start page (include the Iview in your page).
    For putting the contents use Netweaver Developer studio to build a simple start page application and put your static text on that Iview.
    Please go through the following log after your NWDS development is over - This will make you comfortable for further challenging work.
    http://help.sap.com/saphelp_erp2005/helpdata/en/b7/ca934257a5c96ae10000000a155106/frameset.htm
    Do reward points if this helps and let me know of you want anything more.

Maybe you are looking for

  • What things can I do on my new Macbook Pro Retina?

    Hello all, I am VERY new to OS (Been #TeamWindows for 17 years of my life). However, I've had iPhones and iPads for a couple of years now, so I'm a pro (No pun intended) with iOS. But OS on the other hand is something else! Now I'm a techy nerd by he

  • How to change the value to name?

    Dear all I need to change value of SMU2, and I hope I can save the result in different file corresponding to different value automatically by the different path. then I met the problem as what I showed in the VI. I tried to use the "event case struct

  • DMS: ECC6 New tabs of Document browser & Authourizations ??????

    Hi all, there are new tabs of Document browser & Authourizations in ECC6 can anyone tell the significant use of it, where can i find the relevant info on it. Can i remove those tabs from the DIR screen, is there any configration to remove those tabs.

  • BW Data - Production Issue

    Hi, In our BW production system, we have few records in our assets ODS. But, these asset numbers are missing in R/3 production. We have assets 1000 (1/2006) and 2000 (2/2006) in BW with depreciation values $5700 and $5700. In R/3 we have Only asset 2

  • HT4993 how to fix the rotation of fotos and video after the last update?

    I have an iphone 4 which after the last update, 7.0.4 it has not been able to rotate videos or fotos to the landscape style. any suggestions on how to solve this issue.