WMSPanel Nimble install SSL support for HLS

First get Free SSL certificate from Let’s Encrypt Certbot https://certbot.eff.org/ for Apache or Nginx Check other articles for certbot SSL https://www.svnlabs.com/blogs/?s=certbot Let’s Encrypt Certbot will save SSL certificate files here /etc/letsencrypt/live/[Domain-Name]/ Now Edit Nimble Config file “/etc/nimble/nimble.conf” Nimble default port is port = 8081 Add below lines in nimble config file ssl_port = 30443 ssl_certificate … Read more

VOD to iOS

FFMpeg to encode and segment input video stream in the correct format for HTTP streaming protocol. Download & Install HTTP Live Video Stream Segmenter and Distributor # /usr/local/bin/live_segmenter <segment length> <output location> <filename prefix> <encoding profile>   M3U8 File: #EXTM3U #EXT-X-TARGETDURATION:10 #EXT-X-MEDIA-SEQUENCE:1 #EXTINF:10, http://ip-address/streamingvideo/test.m3u8-00001.ts #EXTINF:10, http://ip-address/streamingvideo/test.m3u8-00002.ts … …. #EXTINF:10, http://ip-address/streamingvideo/test.m3u8-00011.ts #EXT-X-ENDLIST Errors: Segmenter error: Could not … Read more