720p -> H.264 (x264) video + AAC 128kbps audio:
ffmpeg -i 00001.MTS -threads 3 -y -vcodec libx264 -qscale 0 -acodec libvo_aacenc -ab 128k -ar 44100 -ac 2 -s 1280x720 -b 1M output.mp4
| export default function SessionsList() { | |
| const sessionsQuery = useSessionsListQuery(); | |
| return ( | |
| <PageLayout title="My sessions"> | |
| {matchQueryStatus(sessionsQuery, { | |
| Loading: ( | |
| <> | |
| <Skeleton height={70} mt={6} /> | |
| <Skeleton height={70} mt={6} /> |
720p -> H.264 (x264) video + AAC 128kbps audio:
ffmpeg -i 00001.MTS -threads 3 -y -vcodec libx264 -qscale 0 -acodec libvo_aacenc -ab 128k -ar 44100 -ac 2 -s 1280x720 -b 1M output.mp4
| javascript:void((function(){var%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('src','https://cdn.rawgit.com/falsefalse/dc7bb726add8b19a741c/raw/bcb52121789465edc635ca9f244c21a997b00d04/share.js');document.body.appendChild(e)})()) |
| (ns reagent-test.core | |
| (:require [reagent.core :as reagent :refer [atom]] | |
| [datascript :as d] | |
| [cljs-uuid-utils :as uuid])) | |
| (enable-console-print!) | |
| (defn bind | |
| ([conn q] | |
| (bind conn q (atom nil))) |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| (ns example.errors) | |
| (defn clean-address [params] | |
| "Ensure (params :address) is present" | |
| (if (empty? (params :address)) | |
| [nil "Please enter your address"] | |
| [params nil])) | |
| (defn clean-email [params] | |
| "Ensure (params :email) matches *@*.*" |
| // ==UserScript== | |
| // @name «Yandex Mail Archive button» | |
| // @namespace gurugray | |
| // @author Sergey sergeev (gurugray) | |
| // @version 0.2.4 | |
| // @homepage_url https://raw.github.com/gist/2181532/yandex-mail.archive.user.js | |
| // @description Создаём кнопку «В архив» на web-почте Яндекса | |
| // @include http*://mail.yandex*/neo2/* |
| # To use this recipe you have to: | |
| # $ brew install python --framework | |
| # $ mkdir ~/Frameworks | |
| # $ ln -s "/usr/local/Cellar/python/2.7.2/Frameworks/Python.framework" ~/Frameworks | |
| # $ brew install ./vim.rb | |
| require 'formula' | |
| require 'open-uri' | |
| class Vim < Formula |