CME and Unity (no CUE point)

Hi people,

just a question: is it possible to connect a CME unit (no CUE point)? Is there a doc in line on that?

Any advice will be appreciated

Concerning

Andrea

Yes, you can integrate the CME unit. Please see the document below.

http://www.Cisco.com/en/us/products/SW/voicesw/ps2237/prod_configuration_guide09186a00801c4185.html

I hope this helps. If so, please indicate the position.

Brandon

Tags: Cisco Support

Similar Questions

  • CME 4.0 and Unity (no CUE point)

    Hi people,

    could I connect a GUY 4.x (XC1) with Cisco Unity 4.0 (5)? There is a compatibility table for the CMF 4.x, or maybe it's incompatible as GUY 12.4 (4) 3.4 T?

    Any advice will be appreciated

    Concerning

    Andrea

    From the point of view of the TSPS of unity, my advice is to go with the latter. It's the compatibility matrix that is maintained by the people who build and test the TSP of unity...

    http://www.Cisco.com/en/us/products/SW/voicesw/ps2237/products_device_support_table09186a0080531eb8.html

    I know DUDE 4.0 did not here yet and it's frustrating that not all Cisco documents are sync'd up. However, the above matrix will be updated with CME 4.0 as soon as TSP unity people feel that they have had enough hours test with it. When he added, it will not be included with anything more than 8.1 (2).

    Also, if compatibility bugs are found on the side of TSP, you can be assured that they only fixed in the TSP branch lasted. I know because I produced 6 of the 9 ESes for TSPS of unity since 8.0 (1) was released.

    Kind regards

    Eric

  • Read and use the cue point in mp3 file

    Hallo,

    It is possible to manage the cue point in the mp3 file with as3.

    If so, no allusion?

    Thank you.

    It is likely that you need to import the CuePointEvent class, if the error indicates it is not.

  • video with actionscript cue points

    Hello! I'm trying to put in place an array of landmarks and when each cue point is reached, it raises an event. I have the updated table in place, but I'm wrong configure action events.

    Any help is VERY appreciated!

    Here's the code so far:

    Import fl.video.MetadataEvent;

    flvPlayback.addEventListener (MetadataEvent.CUE_POINT, onCuePoint);

    flvPlayback.play ("final.flv");

    aCues var = new Array ();

    aCues = [{time: 14, name: "part1"}, {time: 1, name: "part2"}, {time: 3.66, name: 'part3'}, {time: 9.43, name: "part4"}];

    for each (var q in aCues)

    {

    flvPlayback.addASCuePoint (q.time, q.name);

    }

    This is the part that doesn't work

    function onCuePoint (evt:MetadataEvent): void

    {

    if (evt.name = "part1") {}

    part1.gotoAndPlay (2);

    }

    }

    MetadataEvent has the property of information. Try:

    function onCuePoint(evt:MetadataEvent):void
    {
         if (evt.info.name = "part1"){
              part1.gotoAndPlay(2);
         }
    }
    

    Or even better:

    function onCuePoint(evt:MetadataEvent):void
    {
         switch(evt.info.name) {
              case "part1":
                   part1.gotoAndPlay(2);
              break;
    
              case "part2":
                   // do whatever
              break;
    
              case "part3":
                   // do whatever
              break;
    
              case "part3":
                   // do whatever
              break;
         }
    }
    
  • MpegAdvance Xtra and Cue points

    I currently use benchmarks successfully to access the different chapters of movies using:

    A BUTTON
    on mouseUp
    SendAllSprites (#MpegAdvance_CuePointCommand, #GoToCueName, "shape_cue_5")
    end

    With the HELP of hyperlinkClicked

    (data begin "4.1.5"):
    SendAllSprites (#MpegAdvance_CuePointCommand, #GoToCueName, "shape_cue_5")


    How do I do to get these same reference points to interact with other members É.g.i interpreters want a cast member to view or highlight when a cue point is reached - a member of text or graphic saying "Chapter 5" become visible when the mark 5 is reached.

    Thank you

    Mike

    Try the following as a behavior attached to your sprite #TBMPEGADVANCE
    (adjust the cuePointName as needed):

    on cuePassed me, consolidate, aNumber, aName
    If aName = "CuePoint1" then
    Sprite (66) .visible = TRUE
    end if
    end

  • a loop with cue points, round 2

    OK, so I've done it before, and it worked.  It should be as simple as copying the code and rename the FLV Player, but I get an error "invalid seek.  As I said, it worked on previous sites, I did, if any explanation would be great.  I'm trying to get a video replay and then looped around the middle of the video and play at the end in a loop continues.   The only difference I see is that on my other site, it is live from my ftp.  This should not make a difference, as apposed to be local, does?  I also use embedded cue points.  Thanks again.  Here is the code:

    Stop();

    Import fl.video.MetadataEvent;

    Movie.addEventListener (MetadataEvent.CUE_POINT, loopFunction);

    function loopFunction(e:MetadataEvent):void {}

    If {(e.info.name=="introEnd)"}

    Movie.seekToNavCuePoint ("introMiddle");

    Movie.Play ();

    }

    }

    Draw your cuepoints to confirm there is a named introMiddle

  • Problems using Cue points in video loop

    OK, so I want to use landmarks to navigate the video.  First, I simply loop the video of the end of the beginning.  I get an invalid error 1003 search.  Here is my code.  Any help would be appreciated.  Thank you

    Import fl.video.MetadataEvent;

    Movie.addEventListener (MetadataEvent.CUE_POINT, loopFunction);

    function loopFunction(e:MetadataEvent):void

    {

    If (e.info.name is "end1")

    {

    Movie.seekToNavCuePoint ("beginning1");

    Movie.Play ();

    }

    }

    At least you get informed even if the search does not work.

    A quick workaround would be to iterate on landmarks than detect in the metadata, by assigning to each cue point name and time into an object. Once you reach the cue point you want, see if the object has the time value and seek() at the time for this landmark rather than searching for it by name.

    for example (written briefly, you see the idea):

    object to store time values

    var cuePointArr:Object = new Object();

    function onMetaData(infoObject:Object):void

    {

    var cueIndex:String;

    for (cueIndex to infoObject.cuePoints)

    {

    trace ("cue add name [" + infoObject.cuePoints [cueIndex] .name + "] at the time [" + infoObject.cuePoints [cueIndex] .time + "]");

    store as a name = time

    cuePointArr [infoObject.cuePoints [cueIndex] .name] = infoObject.cuePoints [cueIndex] .time;

    }

    }

    function loopFunction(e:MetadataEvent):void

    {

    correct point of reference and has a value in cuePointArr?

    If ((e.info.name == "end1") & (curPointArr [e.info.name]! = null))

    {

    seek to time value

    Movie.Seek (Number (cuePointArr [e.info.Name]));

    Movie.Play ();

    }

    }

    Lived 900 mph up to forgive the typos but turning it into a normal search based on the value of time should work for now.

  • using cue points

    What is the proper syntax and functions to address within a flv cue points and what do average parts and react?

    I want to have the flv files with cue points in them, I can get to do other things in the swf file and I want to know how to set up on both sides, including which must import, what type of events to capture benchmarks and other...

    my mistake.  use:


    Import fl.video.MetadataEvent;

    flv.addEventListener (MetadataEvent.CUE_POINT, f);

    function f(e:MetadataEvent):void {}

    {if(e.info.Name=="wingsdown")}

    do something with e.info.WINGSDOWN elsewhere on stage

    }

    }

  • Handling in Javascript Flash video cue points

    Can any kind person giving me directions on how to get the JavaScript in an HTML page containing a video FLV for cue points in the video? I understand how to get benchmarks, but most people seem to only want to deal with the landmark events in Flash. I want to use Javascript to display different text in a page to each element. The method vary it depending on which player you use? What about when it's the standard Flash Playback component? Should there be any special Actionscript in the SWF file containing the FLV file?

    Thank you

    Fred

    Look at ExternalInterface in online help. It's the external API that you can use for communication between Flash and html page that got him.

  • Temporalfacet cue points

    Hey Forum

    I just read the OSMF blog on the new CuePoints in the sprint 7, it looks very promising, although not as straightforward as ÖVP.

    I was wondering if there is a best practice in enforcement Actionscript cuepoints.

    User: needed for a slide show where each image is modified according to the cuepoints.

    We add the Actionscript cuepoints at the temporal facet and add TemporalFacetEvent.POSITION_REACHED to the... easy facet.

    Now all that we need to do is load the correct image in an event handler has reached cuepoint... apparently not so easy

    In ÖVP the reached cuepoint event contains all cuepoint data so is very easy to access the image name, id etc.

    The TemporalFacetEvent does not seem to allow the same access to the data.

    Is it because its still under development, or is it an another medium specific OSMF to tackle this problem?

    Keep up the good work! Roll on OSMF beta!

    concerning

    Micheal

    Hi Michael,

    You probably noticed that the CuePoint in the TemporalFacetEvent object contains the 'settings' property that can contain a pair key/value you define.

    The purpose of namespaces in the facet is to allow you to distinguish between the different TemporalFacets that are added to the MediaElement. If you take a look at the app from CuePointSample, you can see it adds it of own benchmarks at run time and assigns custom to those own namespace so it can differentiate between people and cue points added by the framework.  It is the purpose of namespaces.

    The new subtitling plugin will have its own namespace.  This allows the code reader a separate receiver for each TemporalFacet, be or have a single listener, and be able to react differently depending on the namespace, for example:

    private void onTemporalFacetEvent(event:TemporalFacetEvent):void
    {
    var ns:URL = .namespaceURL (event.currentTarget as TemporalFacet);
                   
    If (ns is MetadataNamespaces.TEMPORAL_METADATA_EMBEDDED)
    {
    We get this from a piece of media delivered http, these reference points have been incorporated at the time of encoding

    var cuePoint:CuePoint = event.value like CuePoint.
    }
    Else if (ns == MetadataNamespaces.TEMPORAL_METADATA_DYNAMIC)
    {
    We get this framework, for example in the case of an F4V streaming. The framework is dispatching

    These because there is no landmark cases in the stream for F4V files, frame their bed the onMetadata

    reminder and distributes these timely events.

    var cuePoint:CuePoint = event.value like CuePoint.
    }

    Else if (ns == CaptioningPluginInfo.CAPTIONING_TEMPORAL_METADATA_NAMESPACE)

    {

    We get this plugin of subtitling and the event.value is an object of legend

    Legend: Legend of var = event.value as legend.

    }

    }

    Hope that helps,

    -charles

  • CUE point fade-in

    I tried to do previously in AS2, hacked using 2 text boxes different and visibility, eventually give up in frustration.

    I am trying to build the same in AS3, and I think that I should implement such a feature, and there must be a way to do this.

    I have therefore a component TextArea that I use to display video cue points. I want every new cue point to fade out of the trigger point, to help the user stay focused on the video. I did a bunch of research on Google and looked through aid, without result. Now, I ask the community. Does anyone know of a way I could do?

    Sorry its so long that I posted back, I'm overwhelmed and later was able to return to this problem.

    I ended up pulling BitmapData of the background image on the fly, which fell on top of the newly added text and it fading. It works quite simple, as shown in the code below.

    First of all, I put the textHeight of the field to a variable.
    Then, I added the text of landmark.
    Then, I grabbed the new textHeight and calculated the difference.
    Then, I checked to see if I was scrolling. If so, define the scrollPosition at max and restore the height from start until the bottom of the box less the difference in heights.
    Then I instantiate my BitmapData and draw the background to her image.
    I then draw it to a Bitmap object and scrollRect to the Bitmap based on the height of beginning and the difference in the value.
    Finally, I start a Tween to disappear the Bitmap image.

    My code is not the most optimized world, as I do the optimization, once the entire project is nearing completion.

  • I am trying to install a program and I get entry point getdlldirectoryw could not be found in the library of links Dynamics kernel32.dll file and the same for shreggetvaluesw to shlwapi.dll

    I am trying to install a program and I get entry point getdlldirectoryw could not be found in the library of links Dynamics kernel32.dll file and the same for shreggetvaluesw in shlwapi.dll. How can I fix the problem.

    You have all your current updates?
    Go to windows updates and see if there are updates that you do not have installed.
    The error message seems to indicate that your copy of XP has not been updated.

    Updated and let us know if you still receive the error message.

    Thank you

    Marilyn

  • I get a screen blue with the Dell logo on it and no office mouse pointer or even. __

    Remember - this

    Only, I get a screen blue with the Dell logo on it and no office mouse pointer or even.

    is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Check with Dell to see if there is a disc of diagnosis of material that you can download or order for your computer to test and see why it is not booting.  Also check the LEDs on the front that can display a code error, or for a series of beeps which may indicate an error code.

    "Arlingtonal" wrote in the new message: * e-mail address is removed from the privacy... *

    * Remember - this *.

    I get a screen blue with the Dell logo on it and no office or even the mouse pointer.*

    is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    * You have problems with programs
    * Error messages
    * These recent changes made to your computer
    * What have you tried to solve the problem

  • Random BSOD and it seems to point to Netwsw02.sys

    Original title: Netwsw02.sys BSOD

    Hey guys,.

    One of my laptops in my area gives random BSOD. I had a look at the minidumps and it seems to point to Netwsw02.sys

    Looking around online, it was suggessted to update the drivers, etc. I went and checked all drivers and updates available, but this user is always get the BSOD. Whenever it looks like the same Netwsw02.sys is marked up in the minidumps.

    After having had a look at the W2k3 I see nothing out of habit there either.

    I'm new to this community - how can I reach the minidumps for this post?

    Its a SP1 Win7 64 bit

    HP 820 G2

    We have the same standard image on all our laptops of the same model throughout the Organization and other laptops are fine.

    Thanks in advance!

    Keesh

    Happy to help

    Associated with the Netwsw00.sys Intel® Wireless WiFi Link Driver of Intel Corporation

    Remove the driver current completely and install the latest driver available.  For instructions on how to do read everything to update the drivers of my partner JMH3143 http://answers.microsoft.com/en-us/windows/wiki/windows_other-hardware/updating-a-driver/a5e6345e-af9b-4099-bef0-8d22254aa1c1?tm=1436753520149 here
  • Example of configuration, VPIM between the unity and Unity express

    I neet to configure the network of VPIM between unit w/Exchange and 3rd-party voice messaging system and want to familize functionality. That's the analogy between unity and unity express research. I can understand between the unit and Exchange, but do not know how it works between Exchange and the express unit. specually the requirement of the domain.

    Can I get the sample configuration for configuring VPIM between unit w/Exchange network and the express unit?

    Thanks in advance,

    Networking VPIM can be used for networking between Unity and Unity Express, just as it can be used for networking with a third-party system, however, each have their own implementation. Unity Express does not connect to the Exchange. I suggest you re-read the chapter ' using VPIM for Networking with Cisco Unity Express or other Cisco Unity Systems "to http://www.cisco.com/en/US/products/sw/voicesw/ps2237/products_feature_guide_chapter09186a0080449a39.html and Cisco Unity Express Networking guide at http://www.cisco.com/en/US/partner/products/sw/voicesw/ps5520/prod_configuration_basics09186a008035bbdb.html.

    A third-party system would have concepts comparable to the implementation of unity VPIM, but would not exactly be the same - see the documentation of that system for details.

Maybe you are looking for