Radio Song Album Artwork Cover by YouTube

An album cover is the front / other side of the packaging of a commercially released audio recording product, or album. You can find online APIs or Websites where artwork available – Amazon – LastFM – Soundcloud – Apple iTune – Google Play – Gracenote – Free Music Archive And many more …. But YouTube … Read more

JSON2CSV – convert json files to csv

JSON2CSV is a python script that converts json data to a csv file. json2csv.py_.txt Download above text file “json2csv.py_.txt” then rename “json2csv.py” >> python json2csv.py “input.json” “output.csv” JSON – input.json [ { “createdAt”: “2014-02-20T18:15:56.818Z”, “fbID”: “34534534534”, “lessonQuestions”: 5, “lessonScore”: 2750, “lesson_no”: 2, “objectId”: “htmsuPr6F6”, “updatedAt”: “2014-02-22T15:42:38.166Z” }, { “createdAt”: “2014-02-21T16:45:52.550Z”, “fbID”: “100001132788807”, “lessonQuestions”: 5, “lessonScore”: … Read more

PHP Get Radio Stream Type Version

Live Audio Streaming, Internet Radio Player Shoutcast1 Stream: http://shoutcast-server:port/;audio.mp3 Shoutcast2 Stream: http://shoutcast-server:port/streamname;audio.mp3 Icecast2 Stream: http://icecast-server:port/streamname Shoutcast server stream need “;” OR “;audio.mp3” at end of stream URL, so change accordingly   <?php function radioStreamType($stream) { $pp = parse_url($stream); $type = strstr($pp[‘path’], ‘;audio.mp3’); if($type==’;audio.mp3′) { if($pp[‘path’]==”/;audio.mp3″ || $pp[‘path’]==”;audio.mp3″) return “shoutcast1”; return “shoutcast2”; } else { return … Read more

Re Stream Radio Shoutcast / Icecast using Node JS

Re-stream Radio (Shoutcast/Icecast) Stream using Node.JS and get Metadata current playing song title… Use port forwarding to hide real shoutcast IP …. Avoid PHP script to damage Server with too many calls on radio server Start Restream > node radio.js node.js>node radio.js Server running at http://192.168.1.4:8007 Radio Stream connected! { ‘icy-notice1’: ‘<BR>This stream requires <a … Read more

Install Centova Cast

Centova Cast is an internet radio stream hosting control panel. It is used for hosting radio streams and manage Radio Server like ShoutCast and IceCast. You can manage Auto DJ using Centova Cast v2 Auto DJ System plus Server Control Panel. System Requirements for Centova Cast: You can install it on any Linux-based servers. Operating … Read more

Secure Expired MP3 File

Secure Expired MP3 File can be used for hiding real mp3 link inside html source using base64_encode, mcrypt_encrypt, base64_decode, mcrypt_decrypt and md5. MP3 link will be expired in few seconds then it will return No Access Page to protect MP3 files to hot linked. I was working on Secured & Expired MP3 Link in HTML5 … Read more

PayPal auto redirect credit card user to website after payment

I have a problem on my Pay Per Video Website (PPV), Guests normally watch preview of videos for few seconds then PayPal Screen appear to watch full version of video content. Pay Per Plugin for HTML5 Media – Pay Per Plugin for HTML5 Media Plugin is embedded stand-alone, e-commerce-powered JavaScript and iFramed widget for Audio/Video. … Read more

Google App Engine – Downloading source code

I am working on my old project on Google App Engine… so I need to download old source code from Google App Engine …. We can download source code for application by appcfg.py with the download_app action in the Python SDK command-line tool: > appcfg.py download_app -A <your_app_id> -V <your_app_version> <output-dir> But it is giving … Read more