Radio Stream Playlist

  HTML5 MP3 Player with Playlist Windows Playlist: playlist.asx <asx version = “3.0”> <Title>Radio Title</Title> <Author>https://www.svnlabs.com</Author> <Copyright>SVN Labs</Copyright> <PARAM name=”HTMLView” value=”https://www.svnlabs.com” /> <MoreInfo href=”https://www.svnlabs.com” /> <entry> <ref href=”http://stream-ip:port/stream” /> <Title>Radio Title</Title> <Author>https://www.svnlabs.com</Author> </entry> </asx>   Quicktime Playlist: playlist.qtl <?xmlversion=”1.0″?> <?quicktime type=”application/x-quicktime-media-link”?> <embed src=”icy://stream-ip:port/stream” autoplay=”true” />   Winamp Playlist: playlist.pls numberofentries=1 File1=http://stream-ip:port/stream Title1=Radio Title Length1=-1 version=2 … 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

Compare Flash Media Server, Wowza and Red5

Feature Flash Media Server Wowza Media Server Red5 Protocols RTMP RTMPT RTMPS RTMPE RTMPTE RTMFP RTMP RTMPT RTMPS RTMPE RTMPTE RTMP RTMPT RTMPS RTMPE RTMPTE Pricing Find here Find here Free (Open Source) Platforms Microsoft® Windows Server® 2003 with Service Pack 2 or Windows Server 2008 Linux® Red Hat® 4 or 5.2 Runs as a … Read more

How to play wowza live video on ipad

Install Wowza Examples Take care for common problems: Do you have the Application.xml in the right place? [wowza-install-dir]/conf/[appName]/Application.xml Server URL: rtmp://[wowza-address]/live Stream Name: livestream Which format need to broadcast from FMLE? For iOS streaming, you’ll need h.264 baseline profile 3.0 on the video side and AAC on the audio side. what is playlist.m3u8? With Wowza … Read more

Kaltura Video Platform

How to install 2 different Kaltura Video Platform on same server? 1. Community Edition v5.0.0 eagle-10-02 2. Community Edition v4.0.0 Goto kalturaCE_v5.0.0 if kalturaCE_v4.0.0 already installed Rename old databases to prefix _4 like kaltura_4 # php install.php Thank you for installing Kaltura Video Platform – Community Edition A previous installation attempt has been detected, do … Read more

MySQL open files limit

Upgrade Migration – Kaltura CE 4.0 to 5.0 I was migrating Kaltura from CE 4.0 to 5.0 but following MySQL error made me unhappy 🙁 One or more prerequisites required to install Kaltura failed: Please set ‘open_files_limit >= 20000’ in my.cnf and restart MySQL (current value is 1024) # ulimit -a | grep “open files” # … Read more

PHP Download MP3 File by URL

PHP Download MP3 File by URL 1. WGET It will save files on web server then use php header for prompting to download file. 2. CURL CURL will not work efficiently for big files i.e. MP3, ZIP, MP4 etc. 3. file_get_contents() This will consume too much memory on server. It can first read remote URL … Read more

MIME Types List

MIME stands for “Multipurpose Internet Mail Extensions”. It’s a way of identifying files on the Internet according to their nature and format. “Content-type” header value defined in the HTTP response, the browser can open the file with the proper extension/plugin/tool. “Internet Media Type” is the same as a MIME type. MIME types were originally created … Read more