Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document domain('reddit.com') { | |
| body{ | |
| background:#1a1a1a; | |
| color:#ddd | |
| } | |
| .comment .usertext .md p>a:visited,.md a,.res.res-nightmode .tagline a,a,h2 a:visited{ | |
| color:#3498db; |
| # Doxyfile 1.8.9 | |
| #--------------------------------------------------------------------------- | |
| # Project related configuration options | |
| #--------------------------------------------------------------------------- | |
| DOXYFILE_ENCODING = UTF-8 | |
| PROJECT_NAME = "Cameron & Wilding Tool" | |
| PROJECT_NUMBER = | |
| PROJECT_BRIEF = "Drupal 7 Architecture tool" | |
| PROJECT_LOGO = /Users/itarato/Desktop/logo.png |
| import com.intellij.ide.BrowserUtil | |
| import com.intellij.openapi.actionSystem.AnActionEvent | |
| import com.intellij.openapi.progress.ProgressIndicator | |
| import groovy.json.JsonSlurper | |
| import static liveplugin.PluginUtil.registerAction | |
| import static liveplugin.PluginUtil.show | |
| import static liveplugin.PluginUtil.showPopupSearch | |
| registerAction("GoogleSearchAction", "ctrl alt shift G") { AnActionEvent event -> |
| import sys, cv2 | |
| # Refactored https://realpython.com/blog/python/face-recognition-with-python/ | |
| def cascade_detect(cascade, image): | |
| gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) | |
| return cascade.detectMultiScale( | |
| gray_image, | |
| scaleFactor = 1.15, | |
| minNeighbors = 5, |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace aes_example | |
| { | |
| using System; |
| Baidu Maps API Detailed Explanation | |
| - | |
| Explanation of [drawing Objects onto Baidu Maps](http://developer.baidu.com/map/jsdemo.htm#f0_7). | |
| Draw Shit Onto Baidu Map: | |
| - | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
#nano javascript syntax highlighting
The existing syntax highlighting is located in /usr/share/nano/
To add a new language
sudo nano /usr/share/nano/javascript.nanorc
Put the following in the contents:
| ::-moz-placeholder { | |
| color: red; | |
| font-weight: 300; | |
| padding-top: 5px; | |
| } | |
| ::-webkit-input-placeholder { | |
| color: red; | |
| font-weight: 300; | |
| padding-top: 5px; |