Total Video Converter v3.12.
Chương trình này rất chuyên nghiệp nén dung lượng thấp hình ảnh thì cực kì! Vì mình đã xài nhiều nên biết!
Anh em down về cài vào PC:
Chọn Import Media files -> Chọn file video cần convert
Chọn Pocket player -> Chọn Iphone AVC H264
Các bạn chọn Iphone H264 lower quality như trên hình cho dung lượng thấp, tuy lower quality nhưng mình bảo đảm hình ảnh rất đẹp! Sau đó nhấn vào nút Advanced.
Trong phần subtitle các bạn nhấn vào nút " ... " và dẫn đến file phụ đề.
Sau đó nhấn nút Convert now. Và chờ cho nó convert thôi!
Thời gian convert lâu hơn các chương trình khác khoảng 30% nhưng bù lại cho hình ảnh cực đẹp và phụ đề rỏ ràng!
Có thắc mắc gì thì anh em PM mình nha!
Download chương trình tại Đây, Hoặc Đây, còn đây là Thuốc luôn nha các bác!
Nếu thấy bài viết có ích thanks mình cái động viên nghen! Hi hi
Thursday, February 26, 2009
Convert video cho IPhone và cho phép chèn phụ đề
Posted by
vitec
at
8:15 PM
0
comments
Labels: iphone 3G
Monday, February 23, 2009
Configuration lighttpd web server on Iphone V2.2.X
First I had to create a configuration file. I placed this here: /usr/etc/lighttpd.conf and it looks like this:
#######################################################
### lighttpd.conf BEGIN
#######################################################
#
#### modules to load
server.modules = ( "mod_expire",
"mod_auth",
"mod_access",
"mod_evasive",
"mod_compress",
"mod_status",
"mod_redirect",
"mod_accesslog" )
#### performance options (aggressive timeouts)
server.max-keep-alive-requests = 6
server.max-keep-alive-idle = 15
server.max-read-idle = 15
server.max-write-idle = 15
## single client connection bandwidth limit in kilobytes (0=unlimited)
connection.kbytes-per-second = 0
## global server bandwidth limit in kilobytes (0=unlimited)
server.kbytes-per-second = 0
#### bind to interface (default: all interfaces)
#server.bind = "127.0.0.1"
#### bind to port (default: 80)
server.port = 80
#### run daemon as uid (default: don't care)
#server.username = "nobody"
#### run daemon as gid (default: don't care)
#server.groupname = "nobody"
#### set the pid file (newsyslog)
server.pid-file = "/var/run/lighttpd.pid"
#### name the server daemon publicly displays
server.tag = "lighttpd"
#### static document-root
server.document-root = "/private/var/mobile/Sites/"
#### chroot() to directory (default: no chroot() )
server.chroot = "/"
#### files to check for if .../ is requested
index-file.names = ( "index.html" )
#### disable auto index directory listings
dir-listing.activate = "enable"
#### disable ssl if not needed
ssl.engine = "disable"
#### compress module
compress.cache-dir = "/private/var/tmp/"
compress.filetype = ("text/plain", "text/html", "text/css", "image/png")
#### expire module
expire.url = ( "" => "access plus 6 hours")
#### accesslog module
accesslog.filename = "/var/log/lighttpd/access.log"
#### error log
server.errorlog = "/var/log/lighttpd/error.log"
#### mod_evasive
evasive.max-conns-per-ip = 250
#### limit request method "POST" size in kilobytes (KB)
server.max-request-size = 1
#### disable multi range requests
server.range-requests = "disable"
#### disable symlinks
server.follow-symlink = "disable"
#### ONLY serve files with all lowercase file names
server.force-lowercase-filenames = "disable"
#### mimetype mapping
mimetype.assign = (
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".gz" => "application/x-gzip",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tar.gz" => "application/x-tgz",
".tgz" => "application/x-tgz",
".tar" => "application/x-tar",
".zip" => "application/zip",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "application/ogg",
".wav" => "audio/x-wav",
".gif" => "image/gif",
".jpg" => "image/jpeg",
".jpeg" => "image/jpeg",
".png" => "image/png",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".css" => "text/css",
".html" => "text/html",
".htm" => "text/html",
".js" => "text/javascript",
".asc" => "text/plain",
".c" => "text/plain",
".cpp" => "text/plain",
".log" => "text/plain",
".conf" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".dtd" => "text/xml",
".xml" => "text/xml",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".bz2" => "application/x-bzip",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar"
)
#
#######################################################
### lighttpd.conf END
#######################################################
server.document-root = "/private/var/mobile/Sites/"
# mkdir /var/log/lighttpd
# chown nobody:nobody /var/log/lighttpd
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.http.lighttpd</string>
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/lighttpd</string>
<string>-f</string>
<string>/usr/etc/lighttpd.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
and saved it as /Library/LaunchDaemons/com.http.lighttpd.plist
Then I loaded it with the command:
# launchctl load -w /Library/LaunchDaemons/com.http.lighttpd.plist
EDIT: server.groupname = "nobody"
should be: server.groupname = "nogroup"
but will work either way.
Posted by
vitec
at
4:22 AM
0
comments
Labels: iphone 3G
Wednesday, February 18, 2009
Change security levels zones
Internet Explorer on Windows 2003 Service Pack 1 will not allow you to change the default security settings for the internet by default. This means that you can only download files from sites that are included in your “Trusted Sites” list. This is highly annoying in the least.
I’ve included a screen shot of the error in question.
SOLUTION:
1. In Control Panel, open Add or Remove Programs.
2. In the left-hand pane, press Add/Remove Windows Components.
3. Clear the Internet Explorer Enhanced Security Configuration box in the Components list.
4. Press Next.
5. Press Finish.
Posted by
vitec
at
12:00 AM
0
comments
Labels: Internet Explorer
