Wowza Community

This video file cannot be played. (Error Code: 102630)

How to solve this…?

You can find out what the error 102630 means in the article below.
https://developer.jwplayer.com/jw-player/docs/developer-guide/api/errors-reference/

Depending upon the version of JW Player you are using, they may no longer support RTMP. Your URL would look as follows.

http:///172.16.218.23:1935/vod/mp4:sample.mp4/playlist.m3u8

Below is JW Players configuration reference page. They have depreciated RTMP support for version 8.
https://developer.jwplayer.com/jw-player/docs/developer-guide/customization/configuration-reference/#rtmp

Also note that Adobe is ending support for their Flash Player at the end of 2020 as mentioned in their article below.
https://theblog.adobe.com/adobe-flash-update/

Thank you!

Rachel, if you need both of rtmp & hls for some reason ( like rtmp live playback latency less than hls latency ) you need to allow flash player in your browser . In chrome click info button
http://prntscr.com/mc1q1b , then click settings button and allow flash.

Also you need to define your source in jw player like

“sources”: [ {fileType: ‘rtmp’,file: ‘rtmp://ip/test/test’}, {fileType: ‘m3u8’,file: ‘http:/ip:1935/test/test/playlist.m3u8’}
]

Kevin Moore’s answer should be marked as the best answer.

The error is not caused by player support in the browser - the Best Answer above is incorrect.

As per the documentation, error 102630 is due to an empty playlist being selected, so the media file is linked to incorrectly or is missing in the source, It is not the client browser at fault.

Read https://developer.jwplayer.com/jwplayer/docs/jw8-player-errors-reference and scroll down to the “Empty Playlist” section and read the details on error 102630


**ALSO: For more answers to commonly asked questions like this, please visit our FAQ page.**

https://support.wowza.com/hc/en-us/articles/9424683486747-Why-do-I-see-this-error-This-video-file-cannot-be-played-Error-Code-102630-

1 Like

Thank you for clarifying this!!