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:
| // Go to Radarr and click 'settings' => 'general'. | |
| // Open the JavaScript Console in Google Chrome (View => Developer => Javascript Console) | |
| // Past the following in. Hit enter and away you go. | |
| const key = document.getElementsByClassName('x-api-key')[0].value; | |
| if (!key) { | |
| alert('Navigate to /settings/general and run again'); | |
| } |
| {% comment %} | |
| # | |
| # Change date order by adding '| reversed' | |
| # To sort by title or other variables use {% assign sorted_posts = category[1] | sort: 'title' %} | |
| # | |
| {% endcomment %} | |
| {% assign sorted_cats = site.categories | sort %} | |
| {% for category in sorted_cats %} | |
| {% assign sorted_posts = category[1] | reverse %} | |
| <h2 id="{{category[0] | uri_escape | downcase }}">{{category[0] | capitalize}}</H2> |
| Here is a list of scopes to use in Sublime Text 2 snippets - | |
| ActionScript: source.actionscript.2 | |
| AppleScript: source.applescript | |
| ASP: source.asp | |
| Batch FIle: source.dosbatch | |
| C#: source.cs | |
| C++: source.c++ | |
| Clojure: source.clojure | |
| CoffeeScript: source.coffee |