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:
| January 3, 2024 | |
| VIA ECF | |
| The Honorable Loretta A. Preska | |
| District Court Judge | |
| United States District Court | |
| Southern District of New York |
| EXHIBIT D | |
| GIUFFRE VS. MAXWELL | |
| Deposition | |
| VIRGINIA GIUFFRE | |
| 05/03/2016 | |
| Agren Blando Court Reporting & Video, Inc. | |
| 216 16th Street, Suite 600 | |
| Denver Colorado, 80202 | |
| 303-296-0017 | |
| Page 1 |
| #!/usr/bin/env bb | |
| (ns oidc-client | |
| "Get end-user access token from an OIDC provider, caching the access/refresh token in an encrypted file. Code in https://babashka.org | |
| Usage: | |
| /path/to/oidc_client.clj | |
| When there are no cached, valid tokens, it will open a browser with the OIDC provider login URL and start a HTTPS-enabled | |
| callback server on localhost. Make sure that the resulting redirect_uri is registered with your provider. | |
| function __git_fzf_is_in_git_repo | |
| command -s -q git | |
| and git rev-parse HEAD >/dev/null 2>&1 | |
| end | |
| function __git_fzf_git_status | |
| __git_fzf_is_in_git_repo; or return | |
| git -c color.status=always status --short | \ | |
| fzf -m --ansi --preview 'git diff --color=always HEAD -- {-1} | head -500' | \ | |
| cut -c4- | \ |
| # kubernetes - is an open source system for managing containerized | |
| # applications across multiple hosts, providing basic mechanisms for | |
| # deployment, maintenance, and scaling of applications. | |
| # See: https://kubernetes.io | |
| function __kubectl_no_command | |
| set -l cmd (commandline -poc) | |
| if not set -q cmd[2] | |
| return 0 | |
| end |
| (ns clipboard.core | |
| (:import (java.awt.datatransfer DataFlavor Transferable StringSelection) | |
| (java.awt Toolkit))) | |
| (defn get-clipboard | |
| [] | |
| (-> (Toolkit/getDefaultToolkit) | |
| (.getSystemClipboard))) | |
| (defn slurp-clipboard |
| cd ~ | |
| mkdir .gyp | |
| nano .gyp/include.gypi | |
| paste the following | |
| { | |
| 'variables': { | |
| 'linux_use_gold_binary' : 0, | |
| 'linux_use_gold_flags' : 0, | |
| 'target_arch': 'arm', | |
| 'disable_nacl': 1, # NaCL does not build for ARM. |
| ;; Copyright (c) James Reeves. All rights reserved. | |
| ;; The use and distribution terms for this software are covered by the Eclipse | |
| ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which | |
| ;; can be found in the file epl-v10.html at the root of this distribution. By | |
| ;; using this software in any fashion, you are agreeing to be bound by the | |
| ;; terms of this license. You must not remove this notice, or any other, from | |
| ;; this software. | |
| (ns compojure.server.jetty | |
| "Clojure interface to start an embedded Jetty server." |