jsmpeg
                                
                                
                                
                                    jsmpeg copied to clipboard
                            
                            
                            
                        MPEG1 Video Decoder in JavaScript
Dear @phoboslab , Thanks for this great project. To make the decoder more performant, there are a few areas to explore. 1. Enable the web workers to offload the decodePicture...
I know you are following the standard yuv2rgb, 16-235 color scale. But encoders, such as ffmpeg, can encode the full color range 0-255. The result of using 16-235 is that...
i try it in my project, but onEnded、onSourceCompleted、onPause didn't work, i don't know when video end? 我在我项目中使用,但是 视频结束、完成、或者 暂停,这些 回调函数没有执行? ``` beginPullVedio() { var that = this; var canvas =...
I'm dealing with a hardware that it only sends out binary MotionJPEG stream after a post request, but from the doc I see jsmpeg only has a url as, `var...
Running the jsmpeg as per your example produces an error via websocket, claiming Upgrade Required. This happens on two different machines, both my local linux mint 17.2 and my remote...
Is there an online tool to convert mp4 to ts? I use the online tool to turn, will play a failure, black screen
Hi, I use const player1=new JSMpeg.Player("ws://76.68.22.241:28193", { Canvas: document.getElementById("canvas1") }); to create an player object, When I call .destroy(), the memory of the player object created by the browser is...
Hello! I use a simple JSMpeg Player and a simple Relay configuration and lose stream after reloading the page in the iOS mobile browser (but works fine on MacOS). Connecting...
Because some bad browsers still don't support web audio api, is there any feasible way to change to html audio tag?
My Steps: 1. convert mp4 to rtmp stream ` ffmpeg -re -i /usr/local/src/videos/ychx.mp4 -vcodec libx264 -vprofile baseline -acodec aac -ar 44100 -strict -2 -ac 1 -f flv -s 512x214 -q...