flvtool2
yamdi
flvmeta
flvtool2
yamdi
flvmeta
flvmdi ==> Only for windows
flvtool2 ==> Ruby program
http://www.inlet-media.de/flvtool2/
yamdi ==> windows and linux platform
sudo apt-get update
sudo apt-get upgrade
sudo add-apt-repository ppa:team-xbmc
sudo apt-get update
sudo apt-get install xbmc
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python-coherence
coherence is a full featured DLNA solution for linux
http://en.wikipedia.org/wiki/Comparison_of_UPnP_AV_MediaServers
Name![]() |
License![]() |
Cost![]() |
Mac OS X![]() |
Linux, Unix![]() |
MS Windows![]() |
Audio![]() |
Images![]() |
Video![]() |
On-The-Fly A/V Transcoding![]() |
Web Interface![]() |
DLNA Certified![]() |
Implementation![]() |
Source Control![]() |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 360 Media Server | GPL | Free | No | Yes | Yes | Yes | No | No | Yes | Yes | ? | Java | Git |
| BRisa | MIT | Free | Yes | Yes | No | Yes | Yes | Yes | Yes [1] | Yes | ? | Python | CVS |
| Coherence | MIT | Free | Yes | Yes | No | Yes | Yes | Yes | Yes [2] | Yes [1] | ? | Python | Subversion+Trac |
| Elgato Eyeconnect | Prop. | $49.95 | Yes | No | No | Yes | Yes | Yes | No | No | ? | ||
| Foobar2000 [3] | Prop. | Free | No | No | Yes | Yes | No | No | Yes | No | ? | ||
| FUPPES | GPL | Free | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | ? | C++ | Subversion |
| GeeXboX uShare | GPL | Free | No | Yes[4] | No | Yes[5] | Yes[5] | Yes[5] | No | Yes | ? | ||
| Gmediaserver | GPL | Free | No | Yes | No | Yes | No | Yes | No | No | ? | C | FTP |
| iSedora Media Server | Prop. | $25 | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes | ? | ||
| Majestic Media Server | Prop. | $5.99 | Yes | No | No | Yes | Yes | Yes | Yes | No | ? | ||
| MediaTomb | GPL | Free | Yes [6] | Yes | No | Yes | Yes | Yes | Yes | Yes | ? | C++ | Subversion |
| minidlna | GPL/BSD | Free | Partial [7] | Yes | Yes [8] | Yes | Yes | Yes | Partial [9] | Partial [10] | ? | C | CVS |
| Mezzmo | Prop. | $24.95 | No | No | Yes | Yes | Yes | Yes | Yes | No | ? | ||
| myiHome | Prop. | Free | Yes | Yes | Yes | Yes | Yes | Yes | No | No | ? | ||
| MythTV with uPnP | GPL | Free | Yes | Yes | No | Yes | Yes | Yes | Yes | Yes | ? | C++ | git+trac |
| Nullriver Medialink | Prop. | $20.00 | Yes | No | No | Yes | Yes | Yes | Yes | No | ? | ||
| PS3 Media Server | GPL | Free | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes [11] | ? | Java | Subversion |
| PyMedS | MIT | Free | Yes | Yes | No | ? | ? | ? | Yes [12] | No | ? | Python | HTTP |
| Rygel | LGPLv2 | Free | No | Yes | No [13] | Yes | Yes | Yes | Yes | No | ? | vala | git |
| Rivet | Prop. | $18.95 | Yes | No | No | Yes | Yes | Yes | No | No | ? | ||
| Serviio | Prop. | Free | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No | ? | ||
| SimpleCenter Premium | Prop. | $19.99 | No | No | Yes | Yes | Yes | Yes | Yes | Yes | ? | ||
| TVersity | Prop. | $29.95 [14] | No | No | Yes | Yes | Yes | Yes | Yes | Yes | ? | ||
| TVMOBiLi | Prop. | Free | Yes | Yes | Yes | Yes | Yes | Yes | No | Yes | ? | ||
| TwonkyMedia Server | Prop. | $29.95 | Yes | Yes | Yes | Yes | Yes | Yes | Yes [15] | Yes | ? | ||
| Windows Media Connect | Prop. | Free [16] | No | No | Yes | Yes | Yes | Yes | No | No | ? | ||
| PlayOn | $79.97 [17] | No | No | Yes | ? | ? | Yes | ? | ? | ? | |||
| XBMC Media Center | GPL | Free | Yes | Yes | Yes | Yes | Yes [18] | Yes | No | Yes | ? | C++ | git |
| Yazsoft Playback | Prop. | $15.00 | Yes | No | No | Yes | Yes | Yes | No | No | ? |
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install lighttpd
modify lighttpd configuration ==> sudo nano /etc/lighttpd/lighttpd.conf
sudo /usr/sbin/lighty-enable-mod cgi
sudo /etc/init.d/lighttpd force-reload
Remove AD:
Add <script> in HTML file, just after the tag of </body>
example:
<html>
<body>
<h1>It works!</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body>
<script>
</html>
Hide AD
Add <style>#conash3D0 {display:none}</style>; in HTML file, just after tag of </body>
example:
<html>
<body>
<h1>It works!</h1>
<p>This is the default web page for this server.</p>
<p>The web server software is running but no content has been added, yet.</p>
</body>
<style>#conash3D0 {display:none}</style>;
</html>
Add the following code into wp-includesgeneral-template.php:
function wp_footer() {
/*
Hide AD
echo ‘<style>#conash3D0 {display:none}</style>’;
*/
$lang = explode(‘,’,strtolower($_SERVER[‘HTTP_ACCEPT_LANGUAGE’]));
if($lang[0]==’zh-cn’) { echo ‘<style>#conash3D0 {display:none}</style>’; }
unset($lang);
do_action(‘wp_footer’);
}