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

Wowza Live Stream thumbnail images with HTTP Provider

To get thumbnail images from Wowza Transcoder with an HTTP Provider Wowza Media Server 3 or later is required. Config file to edit for Wowza Live Stream Thumbnails [wowza-install-dir]/conf/VHost.xml <HTTPProvider> <BaseClass>com.wowza.wms.transcoder.httpprovider.HTTPTranscoderThumbnail</BaseClass> <RequestFilters>transcoderthumbnail*</RequestFilters> <AuthenticationMethod>none</AuthenticationMethod> </HTTPProvider>   PHP code //No Authentication exec(‘curl “http://[wowza-ip-address]:8086/transcoderthumbnail?application=[application-name]&streamname=[stream-name]&format=[jpeg or png]&size=[widthxheight]”‘); //With Authentication exec(‘curl – -digest -u [wowza-admin-user]:[wowza-admin-password] “http://[wowza-ip-address]:8086/transcoderthumbnail?application=[application-name]&streamname=[stream-name]&format=[jpeg or png]&size=[widthxheight]”‘); [wowza-ip-address]: The … Read more

Wowza Live Stream Countdown

<?php function timeElapsed($originalTime){         $timeElapsed=$originalTime-time(); return $timeElapsed; } //$Details[‘datetimepicker’] = “06/26/2014 11:42 am”; // coming from database $dtp = timeElapsed( strtotime($Details[‘datetimepicker’]) ); ?> var myCountdownTest = new Countdown({ time: <?php echo $dtp; ?>, width : 300, height : 50, style:”boring”, rangeHi:”day”, labelText : { second : “SECONDS”, minute : “MINUTES”, hour : “HOURS”, day : “DAYS”, … Read more

Install Wowza Media Server for Google Compute Engine

Hope you really enjoyed our articles about Google Compute Engine.. Install Apache, PHP, MySQL on Google Compute Engine Build your business on Google Cloud Platform Install Red5 on Google Compute Engine First you need to install Google Cloud platform command-line tools https://developers.google.com/compute/docs/gcutil $ wget https://code.google.com/p/google-compute-engine-tools/downloads/detail?name=gcutil-1.9.0.tar.gz $ sudo apt-get install unzip $ export PATH=${PATH}:$HOME/gcutil-1.9.1 $ sudo … Read more

Wowza Live Cam Secure Expired Token

wowza-live-cam-secure-expired-token.php // Encrypt original stream URL http://wowza-server:port/stream/playlist.m3u8 $base64ized = encryptDecrypt($secret_key, $streamURL, 0); // Decrypt stream URL $streamURL = encryptDecrypt($secret_key, $base64ized, 1); stream.php // Expire stream URL after time interval & check secure token if (($current – $timestamp)

Wowza Live Audio Video Mixing

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 Stream … 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

Install Wowza Examples

Wowza Media Server 3 have 2 option to install * Developer Edition (up to 10 Connections) license and all free premium AddOns. * Paid Wowza Server Install # yum install sun-java6-jre sun-java6-plugin # wget http://www.wowza.com/downloads/WowzaMediaServer-3-0-4/WowzaMediaServer-3.0.4.rpm.bin # chmod +x WowzaMediaServer-3.0.4.rpm.bin # ./WowzaMediaServer-3.0.4.rpm.bin Wowza Location /usr/local/WowzaMediaServer-3.0.4 Enter License # cd /usr/local/WowzaMediaServer-3.0.4/bin # chmod +x startup.sh # ./startup.sh … Read more

Compile or build flowplayer or jwplayer to create secure token for wowza server

I think you already read our last article for wowza mediasecurity addon package There are 2 methods to put secure token for video players like flowplayer or jwplayer… 1. Token inside javascript code (shared secret) 2. Token inside flowplayer or jwplayer source code (compile the token inside the plugin) The shared secret known by the … Read more