2012年3月26日 星期一
2012年3月23日 星期五
2012年3月22日 星期四
Android 4.0 Ice Cream Sandwich Media Framework (4)
Continued (4)
Start NuPlayer tracing
---===NuPlayer===---
2012年3月19日 星期一
2012年3月17日 星期六
Android 4.0 Ice Cream Sandwich Media Framework (1)
Record Android 4.0 media framework tracing about Stagefright and NuPlayer
記錄一下關於Android 4.0中的多媒體框架運作流程
記錄一下關於Android 4.0中的多媒體框架運作流程
2012年3月3日 星期六
HTTP Redirect-simple script
1.Install Apache2 Web Server
2.Enable rewrite module in apache
3.Modify config file
4.Create .htaccess file in the directory which to share
(Note:there can't be any space character or empty line)
5.Restart web server
$sudo apt-get install apache2
2.Enable rewrite module in apache
$sudo a2enmod rewrite $sudo /etc/init.d/apache2 restart
3.Modify config file
$sudo vim /etc/apache2/sites-enabled/000-default (Change "AllowOverride None" to "AllowOverride All") (Add following at top) RewriteEngine on RewriteCond %{HTTP:range} !(^bytes=[^,]+(,[^,]+){0,4}$|^$) RewriteRule .* - [F]
4.Create .htaccess file in the directory which to share
(Note:there can't be any space character or empty line)
$sudo touch .htaccess $sudo chmod 644 .htaccess $sudo vim .htaccess (add following lines,note redirect) Options +FollowSymLinks <IfModule mod_rewrite.c> RewriteEngine on ErrorDocument 404 /404.html Redirect 302 /README http://www.google.com/ </IfModule>
5.Restart web server
$sudo /etc/init.d/apache2 restart
訂閱:
文章 (Atom)