فهرست منبع

Added ffmpeg, haxelib, Matt's Traceroute and imagemagick convert.

Peter Tripp 10 سال پیش
والد
کامیت
66b8ce3fc6
4فایلهای تغییر یافته به همراه72 افزوده شده و 0 حذف شده
  1. 15 0
      pages/common/convert.md
  2. 19 0
      pages/common/ffmpeg.md
  3. 19 0
      pages/common/haxelib.md
  4. 19 0
      pages/common/mtr.md

+ 15 - 0
pages/common/convert.md

@@ -0,0 +1,15 @@
+# convert
+
+> Imagemagick image conversion tool
+
+- Convert an image from JPG to PNG
+
+`convert {{image.jpg}} {{image.png}}`
+
+- Scale an image 50% it's original size 
+
+`convert {{image.png}} -resize 50% {{image2.png}}`
+
+- Horizontally append images    
+
+`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`

+ 19 - 0
pages/common/ffmpeg.md

@@ -0,0 +1,19 @@
+# ffmpeg
+
+> Video conversion tool
+
+- Extract the sound from a video and save it as MP3
+
+`ffmpeg -i {{video-filename}} -vn -ar 44100 -ac 2 -ab 192 -f mp3 {{sound.mp3}}`
+
+- Convert frames from a video into individual numbered images 
+
+`ffmpeg -i {{video-filename}} {{image%d.png}}`
+
+- Combine numbered images (image1.jpg, image2.jpg, etc) into a video
+
+`ffmpeg -f image2 -i {{image%d.jpg}} {{video.mpg}}`
+
+- Convert AVI video to MP4. AAC Audio @ 128kbit, Video @ 1250Kbit
+
+`ffmpeg -i {{in.avi}} -acodec libfaac -ab 128k -vcodec mpeg4 -b 1250K {{out.mp4}}`

+ 19 - 0
pages/common/haxelib.md

@@ -0,0 +1,19 @@
+# haxelib
+
+> Haxe Library Manager
+
+- Search for a Haxe library
+
+`haxelib search {{keyword}}`
+
+- Install a Haxe library
+
+`haxelib install {{libname}}`
+
+- Upgrade all installed Haxe libraries  
+
+`haxelib upgrade`
+
+- Install the development version of a library from a Git repository
+
+`haxelib git {{libname}} {{GIT-URL}}`

+ 19 - 0
pages/common/mtr.md

@@ -0,0 +1,19 @@
+# mtr
+
+> Combined traceroute and ping tool
+
+- Traceroute to a host and continuously ping all intermediary hops
+
+`mtr {{host}}`
+
+- Disable IP address and host name mapping
+
+`mtr -n {{host}}`
+
+- Generate output after pinging each hop 10 times  
+
+`mtr -w {{host}}`
+
+- Force IP IPv4 or IPV6
+
+`mtr -4 {{host}}`