I'm working on simple videochat app with Adobe FMS 4.5. Everything works fine except one thing: I have small videoDisplay for each connected client and one main display. So user can choose his main interlocutor. When i'm trying to attach netStream to main display from small one, streaming on small one stops. Is there way to play one netStream to several displays at the same time?
Is it possible to attach one NetStream to several videoDisplays?
483 views Asked by sevenbit At
1
There are 1 answers
Related Questions in APACHE-FLEX
- How to Run flash applications in any browsers with out adding manual extensions in 2023
- Error: Infra Phase complete, 0/0 resources updated in 02 seconds
- How to replace HTMLLoader to display PDF inside air application
- Air desktop application CSS file and image url
- Flex conditional statement: set VGroup height according to Label Text
- D365 - Azure Devops - Git Repo - How to check the history of a file which is stored in separate folders in the Main branch
- How to access data from row in Grid while selecting it so that further it can be used in Text Field below in Adobe Flex (ActionScript)?
- Actionscript: Access of possibly undefined property id
- Adobe flex in 2021
- How i can add cron entry without time using chef
- Equivalent of parent parentDocument from flex
- Captive runtime packaging issue (Failed to load the AIR Runtime) under Catalina 10.15.7 with ADT
- Getting error while running curl command via chef
- How can I create a context menu on the fly in a textArea in AS3/AIR?
- Flex SDK installer fails to download https://github.com/swfobject/swfobject/archive/2.2.zip
Related Questions in NETSTREAM
- Why is NetStream metadata reading wrong video duration?
- Forwarding a video by frame using NetStream in AS3
- In the IPv6(NAT64) environment,networkStream.BeginRead does't work
- How to convert a (byte) data stream into string in Vb.net
- How to get current uploading speed when live stream with RTMP
- NullRefExc on netStream & tcpClient
- How to use NetStream to request?
- C# - Seems to be receiving two TCP packets at once?
- AS3 KeyboardEvent won't add eventListener after NetStream has been stopped
- How to pause and restart a NetStream object?
- Increase and decrease video speed netstream
- I need a way to flush a NetStream object in Flash without destroying it
- What is the correct way to read from a NetStream through a BinaryReader?
- When using NetStream.appendBytes with H264 NALs is there a way to prevent buffering?
- Is there a way to write a |RtmpSampleAccess command to a NetStream in data generation mode?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
From what I recall, you can only attach one NetStream object at a time. There is a solution possible, however, I would like for you to rethink about your UX because you have "duplicate information" being shown (a large display, and a small display, with the same data) and you're using more space than needed as well. From a design standpoint, this isn't very logical and I would recommend that you only have one working at a time while "removing" the small one when the large one is active.
However, if you're hard set in your ways, you could simply duplicate the bitmap information over from the large one to the small one (to prevent loss of resolution from doing it the other way around. You'll have to research this part and figure it how it can work with your system, but it's a fairly simple concept: you take a 'screenshot' (the pixels of the current video) and use that data to be displayed somewhere else.