A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
/// 0 - Example `Streams` | |
Stream<MyUserModel> userStream => FirebaseAuth | |
.instance | |
.onAuthStateChanged | |
.map((user) => MyUserModel.fromFirebase(user)); | |
String documentPath = 'my/document'; | |
Stream<MyDocumentModel> documentStream = Firestore.instance | |
.document(documentPath) | |
.snapshots() |
plugins { | |
`android-base-app` | |
`android-base` | |
id("io.fabric") | |
} | |
android { | |
defaultConfig { | |
versionCode = 20 | |
versionName = "1.6.3" |
import 'package:flutter/widgets.dart'; | |
/// Conditionally wrap a subtree with a parent widget without breaking the code tree. | |
/// | |
/// [condition]: the condition depending on which the subtree [child] is wrapped with the parent. | |
/// [child]: The subtree that should always be build. | |
/// [conditionalBuilder]: builds the parent with the subtree [child]. | |
/// | |
/// ___________ | |
/// Usage: |
import 'dart:ui'; | |
import 'package:flutter/material.dart'; | |
import 'package:marquee/marquee.dart' as wrapped; | |
class Marquee extends StatelessWidget { | |
final String text; | |
final TextStyle? style; | |
final double? textScaleFactor; | |
final TextDirection textDirection; | |
final Axis scrollAxis; |
// ==UserScript== | |
// @name Medium Paywall Bypass | |
// @namespace Violentmonkey Scripts | |
// @run-at document-start | |
// @match *://*.medium.com/* | |
// @match *://medium.com/* | |
// @match *://*/* | |
// @grant none | |
// @version 2.4 | |
// @inject-into content |