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:
(require 'font-lock) | |
(defvar thrift-mode-hook nil) | |
(add-to-list 'auto-mode-alist '("\\.thrift\\'" . thrift-mode)) | |
(defvar thrift-indent-level 2 | |
"Defines 2 spaces for thrift indentation.") | |
;; syntax coloring |
// Define your table view's sections | |
typedef enum { | |
kTitleSection = 0, | |
kGoalSection, | |
kNumberOfSections | |
} NESTemplateEditTableSections; | |
// Make configuration arrays indexed against table sections. | |
// It's safe to reorder the original enum! | |
static NSString * const kCellIdentifiers[kNumberOfSections] = { |
// | |
// HSActionSheet.h | |
// UIAlertViewBlock | |
// | |
// Created by Hans Sjunnesson on 2/25/12. | |
// Copyright (c) 2012 Hans Sjunnesson | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy of | |
// this software and associated documentation files (the "Software"), to deal in | |
// the Software without restriction, including without limitation the rights to |
source 'https://rubygems.org' | |
group :development do | |
gem 'guard-shell' | |
gem 'guard-sass' | |
gem 'guard-livereload' | |
gem 'coderay' | |
gem 'kramdown' | |
end |