HTML5 MP3 Player with Playlist for WordPress

=== HTML5 MP3 Player with Playlist === Contributors: Sandeep Verma Donate link: https://www.svnlabs.com/ Tags: html5, mp3 player, playlist, audio, audio player Requires at least: 1.5 Tested up to: 3.3.1 Stable tag: 1.07 Allows WordPress users to easily use HTML5 the element enable native audio playback within the browser. It supports all browsers i.e. Firefox, Chrome, … Read more

iWishYou – My Best Wishes with MP3 on Facebook

iWishYou is a facebook application where you can share Wishes / Greeting as songs for friend’s birthday, events, daily wishes. A wish is a hope or desire for something, iWishYou attract users with nice share on FB Walls. It is the better way to express your emotions to your friends & circle.

Stream MP3 using PHP – m3u

M3U is a computer file format that stores multimedia playlists. <?php function m3u_stream($dir) { $mp3=””; $siteurl=”http://www.domain.com/mp3/”; $h1 = opendir($dir); while ($file = readdir($h1)) { if ($file == ‘.’ || $file == ‘..’) continue; $mp3.=$siteurl.basename($dir).”/”.$file.”\r\n”; } closedir($h1); return $mp3; } $folder = “svnlabs”; file_put_contents($folder.”.m3u”, m3u_stream($_SERVER[“DOCUMENT_ROOT”].”/mp3/”.$folder.”/”)); ?> Here “svnlabs” is a folder where all mp3 files exists… … Read more

Get RTMP Server Setup in 3 Minutes

You are wondering how you can setup Free RTMP Server using Nginx in 3 minutes or less. Yes, docker can help you to setup free Nginx RTMP Server with FFMPEG, SSL and HLS. #rtmpserver #rtmp #live #nginx #adaptiveNGINX, nginx-rtmp-module and FFmpeg from source with default settings for HLS live streaming https://t.co/CCJxVqXLvH pic.twitter.com/FVRC7Mme3Z — Radio Streaming … Read more

Serverless Radio

Welcome to really new Idea of Radio Streaming where no VPS or SSH required. Yes, it’s Serverless Radio. Serverless Radio Player provides JavaScript Radio Linear Audio (MP3) Stream like AutoDJ for your Internet Radio Listeners anywhere in the world. Serverless Radio don’t need any VPS or Dedicated Server to install & configure Radio Server or … Read more

PHP Parse Master HLS M3U8 Playlist

I have posted an article to parse HLS / M3U8 Links “PHP Parse HLS M3U8 TS Links” Here is new post for grabbing HLS HTTPS links from master m3u8 playlist…. <?php $hls = “#EXTM3U #EXT-X-VERSION:3 ## Writed by svnlabs 2020 | Skype : svnlabs ## #EXT-X-STREAM-INF:BANDWIDTH=800000,RESOLUTION=640×360 https://hls.server.to/m3/QjNlVWtlSFJUT2VKWVNZQWNCNWVvUzRZem9uWFlybGRGQmFYS0FzWGh5M3JwL3YzcTFVaVh5YkJVUkQ4aStzbHBTaCt2bzZSc2U2TCtNYm5LVjBKQWtEWDY5MXdUTnN3eUx2Skh3aU94S1FBNnd6S255R1kzbVRWVlBRUStNNEVtTVI4amJOT01CWGYxcXozUkpLZzU0Mnk2ZFNaOWdOZWFVVXBVODJ3VGlRc28rdTNBNFg2bmZRbE1mdTlwM2RU #EXT-X-STREAM-INF:BANDWIDTH=2800000,RESOLUTION=1280×720 https://hls.server.to/m3/QjNlVWtlSFJUT2VKWVNZQWNCNWVvUzRZem9uWFlybGRGQmFYS0FzWGh5M3JwL3YzcTFVaVh5YkJVUkQ4aStzbHBTaCt2bzZSc2U2TCtNYm5LVjBKQWtEWDY5MXdUTnN3eUx2Skh3aU94S1FBNnd6S255R1kzbVRWVlBRUStNNEVtTVI4amJOT01CWGYxcXozUkpLZzU4NDl1UFNPK293TkZxRjZ5dGRSVWVteHVPczJBTXBoUld2dEhqTlA1UitQ #EXT-X-STREAM-INF:BANDWIDTH=800000,RESOLUTION=640×360 https://hls.server.to/m3/QjNlVWtlSFJUT2VKWVNZQWNCNWVvUzRZem9uWFlybGRGQmFYS0FzWGh5M3JwL3YzcTFVaVh5YkJVUkQ4aStzbHBTaCt2bzZSc2U2TCtNYm5LVjBKQWtEWDY5MXdUTnN3eUx2Skh3aU94S1FBNnd6S255R1kzbVRWVlBRUStNNEVtTVI4amJOT01CWGYxcXozUkpLZzU0Mnk2ZFNaOWdOZWFVVXBVODJ3VGlRc28rdTNBNFg2bmZRbE1mdTlwM2RU #EXT-X-STREAM-INF:BANDWIDTH=2800000,RESOLUTION=1280×720 https://hls.server.to/m3/QjNlVWtlSFJUT2VKWVNZQWNCNWVvUzRZem9uWFlybGRGQmFYS0FzWGh5M3JwL3YzcTFVaVh5YkJVUkQ4aStzbHBTaCt2bzZSc2U2TCtNYm5LVjBKQWtEWDY5MXdUTnN3eUx2Skh3aU94S1FBNnd6S255R1kzbVRWVlBRUStNNEVtTVI4amJOT01CWGYxcXozUkpLZzU4NDl1UFNPK293TkZxRjZ5dGRSVWVteHVPczJBTXBoUld2dEhqTlA1UitQ”; // process … Read more

FFMPEG MP4 to HLS M3U8 TS Streaming

HTTP Live Streaming (HLS) is very popular for live-streaming and on-demand video (VOD) technology by Apple. HLS need HTTP/HTTPS protocol which allows to stream from a regular web server. FFmpeg is multimedia framework used for stream play, decode, encode, mux, demux, stream, transcode and filter. Install FFMPEG on Ubuntu # apt install ffmpeg How to … Read more

Radio Icecast / Shoutcast PHP Proxy to Re-stream Radio Stream on HTTPS

SHOUTcast doesn’t support SSL/HTTPs. The shoutcast service on port like 8000 is an unencrypted server for HTTP and ICY. So Shoutcast need proxy / restream HTTP stream to HTTPS. You can use PHP or NodeJS or NGINX to restream Radio Streams. Re-Stream Radio Shoutcast / Icecast using Node JS Radio Icecast / Shoutcast PHP #Proxy … Read more

Install SSL Letsencrypt on Wowza Server HLS Stream

I am running webserver / domain on HTTPS and Wowza Media Streaming Server on HTTP (Non-SSL) so I am getting Error for LIVE / VOD HLS stream Files “Cannot load M3U8: Unable to fetch HTTP resource over HTTPS” #FridayFeeling Install #SSL Letsencrypt on #Wowza Server HLS Stream #Nginx https://t.co/lizrbxtx4M pic.twitter.com/DUJPGkQ1QU — HTML5 Player ♫ ♪ … Read more