This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(DiceApp()); | |
| class DiceApp extends StatelessWidget { | |
| const DiceApp({Key? key}) : super(key: key); | |
| @override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:math'; | |
| void main(){ | |
| //int? score=0, highScore = 0; | |
| print('WELCOME'); | |
| CheckOutSystem dice1 = CheckOutSystem(); | |
| dice1.checkOut('Dice no 1'); | |
| CheckOutSystem dice2 = CheckOutSystem(); | |
| dice2.checkOut('Dice no 2'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| CheckOutSystem chk = CheckOutSystem(); | |
| chk.checkOut('Cod', 100.0); | |
| chk.checkOut('Cod', 500.0); | |
| chk.checkOut('bKash'); | |
| chk.checkOut('Nagod'); | |
| } | |
| class CheckOutSystem { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main(){ | |
| DancingRobot dr = DancingRobot(); | |
| FightingRobot fr = FightingRobot(); | |
| TransformerRobot tr = TransformerRobot(); | |
| //can not do this if class declare abstract | |
| //Can not create an object for abstract class | |
| //Robot r = DancingRobot(); | |
| //print(dr.getConfiguration()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git remote add --track master upstream git://github.com/roman10/AndZop.git |