Search Results For "mp3"

Loading ...

HTML5 MP3 Player with Folder Feedburner Playlist

On May 5, 2013, in Android, HTML5, Icecast, iOS, Javascript, Joomla, Shoutcast, Wordpress, by Sandeep Verma

Hits: 506  WordPress and Standalone HTML5 MP3 Music Player with Playlist for MP3 Folder / Feedburner XML compatible with iOS, Android and supports all browsers Firefox, Chrome, Safari, IE and Opera! Read MP3 Folder URL This plugin can read MP3 folder like http://www.domain.com/mp3/ and automatically create dynamic horizontal & vertical playlist MP3 Folder with song’s index [...]

Creating Zip Without Recording ROOT Paths

On March 12, 2013, in Amazon Cloud EC2 S3, CentOS, Cloud, LAMP, Learning, Linux, Tricks, by Sandeep Verma

Hits: 528  Simply use chdir() to change the working directory before you exec() Or you can use …. exec(“cd /var/www/html/media; zip -r -9 Media.zip . 2>&1″, $log); exec(“mv /var/www/html/media/Media.zip /var/www/html/Media.zip”); Get zip file size exec(“ls -ls /var/www/html/Media.zip | awk ‘{print $6}’ 2>&1″, $size); $zipsize = implode(” “, $size); Without this solution Length Date Time Name ——– [...]

Tagged with:  

Best PHP Encryption Decryption

On February 18, 2013, in HTML5, LAMP, Learning, PHP, Tips, Web Application, by Sandeep Verma

Hits: 873  I was working on Secured & Expired MP3 Link in HTML5 MP3 Player. Hope you already read previous article “Amazon S3 Expiring Link” You can use below code for hiding real mp3 link inside html source using base64_encode, mcrypt_encrypt, base64_decode, mcrypt_decrypt and md5. This function is also useful when you need to secure & [...]

Amazon S3 Expiring Link

On February 8, 2013, in Amazon Cloud EC2 S3, Cloud, HTML5, LAMP, Learning, PHP, Tips, by Sandeep Verma

Hits: 2175  I was working on Amazon S3 Cloud HTML5 MP3 Player for S3 Bucket security and Expiring Media links. <?php   if(!function_exists(‘el_crypto_hmacSHA1′)){       /**       * Calculate the HMAC SHA1 hash of a string.       *       * @param string $key The key to hash against       * @param string $data The data to hash       * @param int $blocksize Optional blocksize [...]

Install Streaming Audio Server With Icecast 2.3.3

On January 18, 2013, in Icecast, Learning, Linux, Open Source, Shoutcast, Web Streaming, XML, by Sandeep Verma

Hits: 1449  I need to install streaming audio server with Icecast (OGG/MP3) for one of my great client in service of http://html5.svnlabs.com/. Icecast was designed to stream any audio file using ices and icegenerator for MP3 and OGG/Vorbis audio files. I already did lot of work using Shoutcast, SAMCast and SAM Broadcaster, Its very easy to [...]

Tagged with:  

FFmpeg – ERROR: librtmp not found

On January 5, 2013, in Android, CentOS, FFmpeg, iOS, Learning, Linux, Red5, Tips, Tricks, Web Streaming, by Sandeep Verma

Hits: 1544  I was installing FFmpeg for segmenting Red5 Streams to stream live video from Red5 Server to iOS or Android devices. RTMP (Red5) -> FFMpeg -> Segementer -> .ts files -> iOS (m3u8) I really needed mp4 (AAC/H.264) and ogg (Vorbis/Theora) format for best HTML5 output. I checkout FFmpeg source and tryed below command to [...]

Best Websites to Download Free Music

On December 30, 2012, in Mobiles, Tricks, by Sandeep Verma

Hits: 1975  We usually listen music everyday. People love latest music to listen in their work time. Music on internet can provide you all popular songs in single click. You can tune to your favorite artist or radio or event. There are lot of music portals which provide free as well as paid music to download [...]

Audio Video Formats

On December 16, 2012, in Android, Linux, Open Source, Web Streaming, by Sandeep Verma

Hits: 654  You might have problem understanding audio video formats. All formats vary from size and quality. Audio Formats WAV This is a uncompressed format used for CD quality audio. MP3 This is compressed format, it remove some frequency to optimize music files. WMA This format is developed by Microsoft used for DRM (copy protection) facility. [...]

Tagged with:  

Amazon S3 Cloud HTML5 MP3 Player

On December 15, 2012, in Amazon Cloud EC2 S3, Amazon Web Services, Cloud, HTML5, Javascript, jQuery, PHP, Wordpress, by Sandeep Verma

Hits: 1323  Amazon S3 Cloud HTML5 Player plugin that allows you to link to your amazon S3 bucket and sets up a HTML5 Player playlist (horizontal or vertical). This plugin will support MP3 files only. Amazon S3 Cloud HTML5 MP3 Player is not associated in any way to amazon.com Get Self Hosted Amazon S3 Cloud HTML5 [...]

Tagged with:  

Wowza Live Audio Video Mixing

On December 13, 2012, in Android, Flex, Java, Learning, Open Source, Web Streaming, Wowza, by Sandeep Verma

Hits: 1299  Wowza doesn’t do transcoding. So, we highly recommend to use FOSS solutions Where we need Wowza Live Audio Video Mixing? 1) Live event is broadcasting through Wowza 2) We need a multi lingual setup somewhere and comment or transcode that live event with voice. 3) Flash client might receive the stream where Output Video [...]

Tagged with:  

HTML5 MP3 Lyrics Player

On November 28, 2012, in Android, HTML5, Imagine, iOS, jQuery, Learning, PHP, Web Application, Web Streaming, Wowza, by Sandeep Verma

Hits: 1053   HTML5 Lyrics Karaoke Player Plugin enable wordpress users to sing and play song text lyrics. Free Features Supports MP3 formats Supports Text Song Lyrics Social Links Facebook / Twitter Works in IE, Safari, Firefox, Chrome, Opera Player have shortcode for post/page [html5lyrics id=ID] i.e. [html5lyrics id=1] Paid Features Supports MP3 formats Supports Text [...]

Tagged with:  

Android HTML5 Audio duration and loadProgress in audio.js

On October 27, 2012, in Android, HTML5, iOS, jQuery, Learning, Tricks, Web Application, by Sandeep Verma

Hits: 1393  audio.js is a drop-in javascript library that allows HTML5′s <audio> tag to be used anywhere. AudioJS uses native <audio> where available and an invisible flash player to emulate <audio> for other browsers. AudioJS provides a consistent html player GUI to all browsers which can be styled used standard CSS. But I faced a issue [...]

PHP Colorize an image using GD

On October 16, 2012, in Facebook, Imagine, LAMP, Learning, PHP, Web Application, by Sandeep Verma

Hits: 780  I was working for color customization for HTML5 MP3 Player with Playlist Finally, I have time saving code for you PHP Colorize an image using GD <?php //print_r(html2rgb(“#ffffff”)); //echo rgb2html(137, 113, 79); $color=isset($_REQUEST['color'])?$_REQUEST['color']:”ff00ff”; $image=isset($_REQUEST['image'])?$_REQUEST['image']:”2.jpg”; $rgb= html2rgb(“#”.$color); $imgname=$image;               $im=imagecreatefromjpeg($imgname);     if($im&& imagefilter($im, IMG_FILTER_COLORIZE,$rgb[0],$rgb[1],$rgb[2]))     {                    header(“Content-Type: image/jpeg”);          imagejpeg($im);                    //imagejpeg($im, ‘output.jpg’);          //imagedestroy($im);     }    else    { [...]

Pay Per Plugin for HTML5 Media

On September 28, 2012, in HTML5, iOS, LAMP, PHP, Web Streaming, Wordpress, by Sandeep Verma

Hits: 940  The Pay Per Media Plugin is embedded stand-alone, e-commerce-powered JavaScript and iFramed widget. Features: 1. Delivers on-demand audios / videos / books 2. PayPal with sandbox support 3. Supports Preview and Full Media using JW Player 4. No Popups 5. JavaScript and i-Frame widgets 6. Tracks user’s payment using PayPal Transaction ID 7. XML [...]

Install rtmpdump in CentOS

On August 29, 2012, in Amazon Cloud EC2 S3, CentOS, Cloud, LAMP, Linux, Open Source, Red5, Web Streaming, Wowza, by Sandeep Verma

Hits: 2273  I was compiling FFmpeg with RTMP support, but it requires librtmp >= 2.2.f [root@svnlabs ffmpeg]# ./configure –enable-gpl –enable-nonfree –enable-libmp3lame –enable-libfaac –enable-librtmp –enable-libtheora –enable-libvorbis –enable-libx264 –enable-shared –enable-postproc –disable-yasm Package librtmp was not found in the pkg-config search path. Perhaps you should add the directory containing `librtmp.pc’ to the PKG_CONFIG_PATH environment variable No package ‘librtmp’ found [...]

Tagged with:  

What is the Difference Between Shoutcast and Icecast?

On August 7, 2012, in Launch, Web Streaming, by Sandeep Verma

Hits: 1477   Shoutcast Server Icecast Server Plus Point – Your radio and online stream will be listed in the Shoutcast directory where you can find online radio stations and Internet radio from around the world. – Do OPOCE to deny access to certain IP addresses to your live stream. – Easy to use and very [...]

Tagged with:  

Radio Stream Playlist

On August 7, 2012, in Amazon Cloud EC2 S3, Cloud, HTML5, Tricks, Web Streaming, by Sandeep Verma

Hits: 1360     HTML5 MP3 Player with Playlist Windows Playlist: playlist.asx <asx version = “3.0″> <Title>Radio Title</Title> <Author>http://www.svnlabs.com</Author> <Copyright>SVN Labs</Copyright> <PARAM name=”HTMLView” value=”http://www.svnlabs.com” /> <MoreInfo href=”http://www.svnlabs.com” /> <entry> <ref href=”http://stream-ip:port/stream” /> <Title>Radio Title</Title> <Author>http://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 [playlist] numberofentries=1 File1=http://stream-ip:port/stream Title1=Radio [...]

Tagged with:  

Compare Flash Media Server, Wowza and Red5

On July 10, 2012, in Amazon Cloud EC2 S3, Flex, Learning, Red5, Web Streaming, Wowza, by Sandeep Verma

Hits: 3900   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 [...]

Tagged with:  

WordPress 3.4.2

On June 29, 2012, in , by Sandeep Verma

Hits: 990  We offers Product Engineering and Technology R&D services for software product development. We focus on product development, high level of technical expertise, ongoing investments in research, and an elegance approach give us a competitive edge in building software products better and faster. Our expertise in large data analytics, SaaS, cloud computing, performance engineering, and [...]

 

World Music Day – June 21

On June 21, 2012, in HTML5, jQuery, Launch, Web Application, Wordpress, by Sandeep Verma

Hits: 972  HTML5 MP3 Player celebrating World Music Day ….  HTML5 MP3 Player with Playlist for WordPress  Terms and Condition for HTML5 MP3 Player with Playlist

Tagged with:  

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!

Visit our friends!

A few highly recommended friends...