How can I set waiting when the stream is not published. When unpublish (NetStream.Play.UnpublishNotify) set to waiting, and on publish (NetStream.Play.PublishNotify) continue play
Videojs-swf - rtmp connect without publishing stream or disconnect
253 Views Asked by Nicorici Viorel At
1
There are 1 best solutions below
Related Questions in ACTIONSCRIPT-3
- How to create an ActionScript 3.0 in Flash to display Current Date, Time and Day of Week
- textinput.needsSoftKeyboard does not work (air for android)
- AS3 Get currentFrame of current MovieClip
- call Win32 API in flex to set Window Display Affinity
- Air Native Extensions: Released Air App w/Windows Native Extension works fine on develpment PC but not on other computers
- TestFlight API and stats with as3
- Error while using removeChild() and accessing members of array
- Flash erase image with mask - gotoandplay next frame
- Adding a listener to a VerticalScrollBar in flex
- AS3 array to clean up long code?
- AS3 - How can objects that appear randomly never touch each other?
- import a sound externally or from the library? AS3
- Nesting Asynchronous Promises in ActionScript
- AS3 - How can multiple objects that appear randomly NEVER touch each other?
- ActionScript + Ruby
Related Questions in VIDEO.JS
- video.js is not loading/working in IE 9,10 or 11
- How to Install/Use Video.js-HD-Toggle-Plugin-master for Wordpress
- Why is mp4 audio behaving weirdly in Firefox + videojs player?
- Video JS v 4.12.7 - IE7, IE8 Issue
- How to write error message object of videoJS on server
- Write plugin for VideoJS 5
- Setting a loop range with video.js
- How do you get the list of existing markers on the videojs-markers plugin?
- Video.js Chapter doesn't work
- video.js "hides" subtitle for firefox? How to show it with a generalized way?
- Videojs custom error message when error code is 401
- Update button class with video.js markerReached function
- Extending progress control in video.js, duplicate progress bars
- video js giving error CODE:150 undefined
- Coloring the flash background in update 5.0.0 don't work
Related Questions in RTMP
- Cloudfront stream only part of the video
- Cam streaming Flash client/widget
- How to use a custom codec for flash microphone strming over rtmp
- Applying css to embeded media player in web page
- FFMPEG Streaming updated image in loop to FB Live Video
- Options for replacing RTMP for live streaming
- Stream avi file while its generated on the fly ffmpeg
- I want to send a flv to rtmp server,but there is an error?
- how can i reduce latency in local network, am using nginx with rtmp module
- Videojs-swf - rtmp connect without publishing stream or disconnect
- How to decrease latency for hls nginx rtmp?
- How to stream via RTMP using Gstreamer?
- How can I check if a streaming link is alive in android
- Streaming microphone to RTMP (red5) and back on android
- How to play Brightcove RTMP URLs on JWPlayer?
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)
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?
I don't use Video-JS so I don't know what their code setup is doing.
Normally (without Video-JS) it's done something like this.
So now in the Video-JS code, find the part that handles NetStream events, and edit the function to
pause();orresume();.If unsure of the real NetStream name (I just called it
yourNSfor example) you can try :Instead of :
yourNS.pause();try asevt.target.pause();orevt.target.pause();(PS: I use evt because of the name in function parameter is
(evt:NetStatusEvent):void... Check your own Video-JS function)