This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="uk-container uk-container-center" style="min-height:600px"> | |
<h1>Infinite list</h1> | |
<ul class="uk-list uk-list-line" id="infinite-list"></ul> | |
<div id="scrollspy" data-uk-scrollspy="{topoffset: 200, repeat: true}" class="uk-text-center"> | |
<i class="uk-icon-refresh uk-icon-spin uk-hidden"></i> | |
</div> | |
<script type="text/listtemplate"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FFmpeg is an amazing collection of open-source tools that can record and stream video and audio. However, it can also transcode video and audio (convert the files to different formats), and that is what has me so excited. There’s also a great PHP package called ffmpeg-php that allows for easy use of FFmpeg from inside PHP scripts. Today, I’m going to see if I can’t help you get both of these set up on your system. | |
Admittedly, it’s been a while since I’ve tried to install FFmpeg, about two years. I recently thought up some ideas on how I’d like to use FFmpeg, so I thought it was time to give it a try yet again. Today, I’m proud to say that installing FFmpeg is so much easier to install compared to the past, that I dare say it’s simple. | |
Here is my experience with installing FFmpeg on my server and how to fix the pitfalls that I encountered. | |
Preface | |
Note that I did all the following steps on a CentOS server. The specific version is CentOS x64 5.2. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DOWNLOAD MODULES | |
cd /root | |
wget http://dl.fedoraproject.org/pub/epel...1.el6.i686.rpm | |
rpm -Uvh yasm-1.2.0-1.el6.i686.rpm | |
cd /usr/local/src | |
wget http://easynews.dl.sourceforge.net/s...-3.99.5.tar.gz | |
wget http://downloads.xiph.org/releases/o...g-1.3.1.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Remove Links from Post Titles in Genesis | |
* | |
* @author Joshua Nelson | |
* @link http://joshuadnelson.com | |
* | |
*/ |
NewerOlder