More than one video publisher in a multicast enabled netgroup

I wonder what will happen if more than one members of
a netgroup publish video and audio with the same stream name at the same time; and all the members of the netgroup play the very same stream. the video will come in one by one or whatever? By the way, the the netgroup enables multicast
                groupSpecifier.multicastEnabled = true;
                groupSpecifier.postingEnabled = true;
                groupSpecifier.serverChannelEnabled = true;
The scenario is quite common in a video conference room.
Thanks in advance

if more than one stream is published to a group with the same name, then the data for all of the streams will flow through the group.  however, each subscriber to that named stream will select/latch onto just one of them.  there's no way to control which one each subscriber selects, though.  if they're all active, then the first one from which a subscriber receives any data wins.  if the stream onto which a subscriber has latched goes idle, then the subscriber will un-latch and selection will again be up-for-grabs to the first of the streams from which data is received.
each time a subscriber latches onto a new/different stream, you'll get a NetStream.MulticastStream.Reset NetStatusEvent.NET_STATUS event.  you won't get one of those if the subscriber un-latches but then reselects the same stream.
if you're concerned with rogue publishers in a group, same name or not, consider adding a publish password to the group specification.

Similar Messages

  • How do I add more than one video per track/layer?

    Hi.
    Could someone please advise me how I can add more than one video to a track/layer?
    I'm cutting and pasting parts and each time I paste, a new track/layer is added.
    The final video is going to be approximately 5 minutes long.
    I am 17 seconds in and have 54 tracks already!
    How do I stop this?
    Thank you very much
    J

    More video tracks. This is actually what you want.
    Unless you're just making a still image (like Photoshop), multiple layers give you control to animate each individually. (If it's just a Photoshop comp you're after, you may want to create it in Photoshop)
    If you want to move ALL OF THE VIDEO TRACKS TOGETHER, you can use
    parenting or
    precompose those individual layers into a single composition.
    livedocs

  • More than one video effect for same clip?

    Is it possible to apply more than one video effect to the same clip? I know this could be done in previous versions of iMovie, but I can't seem to figure out how to accomplish this task in '09!!
    Thanks!

    In general, no, you cannot do two video effects at the same time.
    However, black and white is a special case, because you can achieve this using Video Adjustments.
    You can select Aged Film and then adjust to Black and White in Video Adjustments.
    Try setting the Saturation slider all the way to the left (0%)
    Then, move the Contrast slider to the right until it is around 50%.

  • The internet browser with more thane one video running is keep crashing after installing Adobe flash.

    If I run any website contains more than one video like this website for example :
    http://www.neatoxv-21.org ,where it has two videos talking about the cleaning vacuum neato xv-21, and both videos
    are running at the same time, then suddenly the explorer will crash, But in other broswers like google chrome it works fine.
    To double check, I un-installed the software and then I restarted my computer, I installed the software again but the same issue.
    I am using windows 7, so to be sure I missed nothing I updates the windows from Microsoft website and also
    I am sure that I have the latest internet explorer update.
    Now, the funny thing, I did the same process with Google chrome and it works fine!!!
    I am totally confused, wht could be the reason??
    Please advice..

    Update - I've now tested this with different internet connections, different computers and different operating systems. I've also just received a response from my internet service provider who said:
    "I've tested in Firefox, and it looks as if the buttons are crashing the browsers' flash plugin. This being the case, it is not going to be anything related to your computer, the internet connection, or the web server. 
    In all likelihood, it will be an issue with how the flash tour is coded, which I presume is created automatically by the Tourweaver package you mention. You will need to pursue their support for advice on this problem as it is something with the flash file)s( which isn't working correctly."
    So, hopefully Easypano support will be able to fix the problem. Obviously no connection at all with Adobe After Effects

  • Share more than one video

    When selecting more than one video, in the Photos, I can not share in another application such as flickr. why?

    sameerdaga wrote:
    Except 8, 10, 11, 12, 13, 14 and 20, which issues relate to WhatsApp. Also to put phone to flight mode is not the solution to problem of auto switching on of phone while charging. Kindly resolve other issues and forward the issue related to WhatsApp to WhatsApp technical team.
    regards
    Sameer daga 09825304004
    I do not use whatsapp and am not interested in what it does or not. It's up to you to report bugs to the developer. And when I check it's actually problems 8,10,11,12,13,14,19,20,21,22,23 and 24 related to Whatsapp. That's 12 out 25 of your "problems" related to a third-party app.
    Phone switching on when charging is not a problem or a bug - that is the way charging works today - on WP8, Android and iOS so you'll have to live with it regardless of what phone you have.
    Your issue 25 is not an issue - you just don't know how to do it. When you open the received text message at the bottom there is an icon with two arrows, one pointing left, the other pointing right. Tap on that icon and the number from which the message was sent will be highlighted.
    Issue 21 - all contacts for which I have included a birthday are showing in my calendar. Don't know what you are doing wrong.
    I could go on, but I have to do a bit of work as well.

  • More than one process bind() to a multicast port.

    Hi,
    I found one strange behavior when there are more than one process bind() to the same multicast port. The problem is as the following:
    If there is a process bind to a port, say 2000 and joined a multicast group. This process did not do a SO_REUSEADDR,
    before bind() and join the multicast group. Later on, I have another program in the same host joining the same multicast group with the same port number (with SO_REUSEADDR), the second process will not be able to receive any data from the multicast group (with the same port number) eventhough the second process can join the multicast group successfully.
    However, if both process call setsockop with SO_REUSEADDR, both process can receive multicast data from the multicast group. The simplest fix is to have both set SO_REUSEADDR. But the problem is, the first application is an off-the-shelf software and we do not have source code to it.
    I wonder if this is a problem with Solaris. Any thoughts?
    Thanks,
    Shao

    Hi,
    I found the answer to this question. Basically, according to the source code (Solaris 8 Foundation Source), ip6.c, line #2510, multicast data is forwarded to all "listeners" only if the first "binder" has a SO_REUSEADDR set. What that mean is, if the first "binder" does not set SO_REUSEADDR before bind(), any subsequent bind() with SO_REUSEADDR is meaningless (in practical terms).
    My question is, is this behavior correct? I think it's much better to allow subsequent listeners (successfully bind and joined the multicast group) to be able to receive data. The reason is that if the first binder does not set SO_REUSEADDR before bind() the port and joined the multicast group should not deny any "late comers" to join in and participate in the multicast group. "Fixing the code" is not always practical especially if one of the application is a third-party application. Or reject bind() if the first "binder" does not allow SO_REUSEADDR.
    Any comment?
    Regards,
    Shao

  • Viewing more than one video at a time

    Here is my example...
    ...I have a scene recorded with three cameras, now if i click on each video on the time-line, a new viewer will open and i can watch that video, now i can have a viewer open for each video, but only one will play at a time, is there a way to allow all viewers to play sequentially while i move and work along the timeline of the sequence that i am working on?...
    ...thanks for your help...Darwin

    Hi Darwin
    Yes best tool is FinalCut Pro and it's MultiCamera function.
    But one can do it in a fairly easy way in FinalCut Express
    • Drop Camera one clip into video track 1
    • Camera two => V-track 2
    • Camera three => V-track 3
    Double click on the clip in track 1.
    Now You see it in Viewer
    Turn on Image + Wireframe (above the picture in viewer window)
    Now shrink it to take up a Quater and move it up to the left hand corner
    Repeat with track 2 and three but move them into a free corner
    Now when You play TimeLine You see all three videos playing in concordance.
    Now You have to move them so that they sync. I use a photo flash during recording
    to get one white frame on all cameras
    Then to the edit.
    Turn on Toggle Clips Overlays [alt+W] - this turns on the transparicy line in each
    videoclip and audio level on those
    I use the transparicy line and the Pen tool to increase transparacy to 100% on the
    part of a clip I want visibly and drag down the other two to 0%
    When I've done this trough out the full TimeLine
    • I go into each Video track and restore size to 100% and that they fill window
    Now playback and see if You are satisfied.
    Still - You now have to figure out on which Audio that works best.
    Good Luck
    BUT in FinalCut Pro this is very much more better and most of all time saving.
    Yours Bengt W

  • Video Converter app that can convert more than one video at a time?

    Hi everyone,
    I;m after an app that i can convert my videos with. I want a free app where i can add multiple videos and have them convert one after the other? does anyone know of a free app that i can get?
    I know theres smartconverter (free) but you cant add multiple videos and i dont want to pay $10 for pro!
    can someone please HELP Thanks

    The MPEG Streamclip app can batch process videos. It can even convert up to  4 videos at the same time.
    http://www.squared5.com/
    It's free...
    Just drop as many videos as you like into the batch window.

  • I can't seem to drag and drop more than one video on my timeline ? Only the audio will appear ?

    Hello, I've been working on Premiere for a year now
    I installed 2014 a week ago, and until today I haven't had any problems.
    When I drag and drop the first video, everything works fine, until I try to drop another video.
    The second video won't appear on the timeline, except for it's audio
    Which is weird to me because everything worked well on the CS6
    My sequence settings are
    Custom
    30 frames/second
    16/9
    sample rate : 44100Hz
    quickTime
    +H.264
    The first video's properties:
    Type: MPEG Movie
    File Size: 576,0 MB
    Image Size: 1920 x 1080
    Frame Rate: 30,00
    Source Audio Format: 44100 Hz - compressed - Mono
    Project Audio Format: 44100 Hz - 32 bit floating point - Mono
    Total Duration: 00:04:41:28
    Pixel Aspect Ratio: 1,0
    The second video's properties:
    Type: MPEG Movie
    File Size: 583,1 MB
    Image Size: 1920 x 1080
    Frame Rate: 29,97
    Source Audio Format: 48000 Hz - compressed - Stereo
    Project Audio Format: 48000 Hz - 32 bit floating point - Stereo
    Total Duration: 00:04:45:15
    Pixel Aspect Ratio: 1,0
    (it's a .MTS)
    What is weird, too, is that when I added the first video, I couldn't add it "Again", the same thing happened
    Any help? I need to finish the project by tonight :/

    My QuickTime version is the 10.4 (no idea if it's the latest one)
    What do you mean by my system properties ? My mac ? If so then its a 16Gb 1600MHz DDR3 + Nvidia Geforce GT 750M 1024MB, an OS X Yosemite version 10.10
    "What happens when you import the files onto a non-quicktime sequence?", well I don't know how to create a sequence before dragging a file on the timeline on this premiere, so I dragged the "Second video" first and it created a sequence with AVC Intra 100 1080i
    29,97 frames/second
    preview file format AVC-intra class100 1080i
    what's weird is that I could add the second video once, but not twice, and I can add the "first" video several times (it's weird because the sequence was created from the second video's properties)
    To answer your last question, the same thing happens too. I can create another sequence with the "Second video", add the "First video" 10 times but I won't be able to add the second video a second time.
    On the other hand, when i created another sequence with the "first video", I will be able to add the first video as much as I want, but I won't even be able to add the "second" video once.

  • Adding more than one video

    Is there a limit to how many videos I can upload or have on my page created with iweb? I want to be able to create a basic web page for my company and have several short videos (demos) of my work to showcase.
    Thanks!

    It's often recommended not to simply drag & drop videos into iWeb's canvas. In the following old thread, alternative suggestions are offered which would make possible limits on the number of videos in iWeb moot:
    If you are a MobileMe subscriber, you can publish movies from iMovie directly to your MobileMe Gallery on the Internet — see _this example_. You can then add MobileMe Gallery movies to any of your webpages without them becoming part of iWeb's Domain file — see halfway through this _video tutorial_.

  • Is there a way to have more than one video format in one sequence? (CS4)

    I'm fairly new to Premiere Pro and I'd like to have segments of raw footage with different resolutions and frame rates in the same sequence so I can edit them together. Is there a way to do this in CS4? Thanks for your time.

    Oh sorry, I'll go see if i can delete my other post. I realize now that what I'm looking for wouldn't really be possible, to create a sequence optimized for two different video formats, i.e. no red bars for either clip. I should have specified the first time I asked, my apologies. Thanks for the response!

  • Adding more than one video effect

    I have a short clip that I want to give both the "aged film" look to as well as make it black and white.
    Both these effects are available under Window > Clip Adjustments, but I can't figure out if it's possible to use both at the same time. Anyone know? Thanks.

    In general, no, you cannot do two video effects at the same time.
    However, black and white is a special case, because you can achieve this using Video Adjustments.
    You can select Aged Film and then adjust to Black and White in Video Adjustments.
    Try setting the Saturation slider all the way to the left (0%)
    Then, move the Contrast slider to the right until it is around 50%.

  • Can we play more than one video on same screen on DMP-4400,4600,4310.

    We are making custom slide and playing single video on slide(screen),but we ahve a requirement of playing multiple videos on single slide(screen).Please tell us if this is possible on on DMP-4400,4600,4310.

    Yes you can. It is covered in the FAQ...
    iPod: Frequently Asked Questions
    http://docs.info.apple.com/article.html?artnum=60920
    Patrick

  • Swap edit with more than one video clip

    Hi
    I just discovered Swap Edit: drag a clip (could be on multiple tracks) to a different in point, hold down Option (to see the curved arrow) and drop to move the clip to the new in point and ripple the sequence accordingly. Great.
    But - it doesn't seem to work if I highlight two sequential video clips and try to move them. Option key only switches between overwrite and insert arrows. Anyone know if it's possible?
    thanks!
    Matt

    +But - it doesn't seem to work if I highlight two sequential video clips and try to move them.+
    As far as I know it works if you drag and drop a single clip each time.
    G.

  • Video - can you have more than one per session?

    Can I have more than one video in a logic session - like one at the top of a session then 5 minutes later drop another in? I know Pro Tools has multiple video tracks. How do composers out there deal with new cuts etc?

    ProTools can do it, Cubase can do it, Digital performer (I think) can do it, ....
    Logic can NOT do it. Only one quicktime clip per project at a time.
    Logic is owned by Apple which created the Quicktime standard but still they haven't figured it out how to implement that into Logic. Maybe the Logic developers should just pick up the phone and ask the guys over at ProTool how they did it.

Maybe you are looking for