Requirements :
- ffmpeg
- imagemagick
Tested On Linux
$ ffmpeg -i input.mp4 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop -0 - output.gif
Requirements :
Tested On Linux
$ ffmpeg -i input.mp4 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop -0 - output.gif
| import React, {Fragment} from 'react'; | |
| import { | |
| BrowserRouter as Router, | |
| Route, | |
| Link | |
| } from "react-router-dom"; | |
| const Navigation = () => ( | |
| <ul style={{display: "flex", justifyContent: "space-around" }}> | |
| <li><Link to="/"> Home </Link></li> |
| /** | |
| * Simple Injection HTML Script resource | |
| * @author rin@valutac.com | |
| * Example use: | |
| * rel its experimental | maybe not work on some browser | |
| * const scriptList = [ | |
| * { | |
| * src: 'url', | |
| * async: boolean, | |
| * defer: boolean, |
| ####### | |
| # TUGAS MAHASISWA GUE | |
| # NAMA : RADYSURYAGUS | |
| # NIM : MINTA AMA DOSEN YEH | |
| ###### | |
| def initMahasiswa(): | |
| return { | |
| 'nopokok': 0, | |
| 'nama': '', |
wsgi.py
import app
if __name__ == "__main__":
app.run() #!/bin/bash
src="${1-./img/splash.png}"
ffmpeg -i ${src} -s 640x1136 ../ios/CardC/splash/Default-568h@2x~iphone.png -y
ffmpeg -i ${src} -s 750x1334 ../ios/CardC/splash/Default-667h.png -y
ffmpeg -i ${src} -s 1242x2208 ../ios/CardC/splash/Default-736h.png -y
ffmpeg -i ${src} -s 640x960 ../ios/CardC/splash/Default@2x~iphone.png -y
ffmpeg -i ${src} -s 320x480 ../ios/CardC/splash/Default~iphone.png -y| // import the library | |
| import PropTypes from 'prop-types'; | |
| // define a component | |
| class Greeting extends React.Component { | |
| render() { | |
| return ( | |
| <h1>Hello, {this.props.name}</h1> | |
| ); | |
| } |
# List
- react-native-config --save # configuration management
- rn-fetch-blog --save # for fetch in react native
# https://medium.com/differential/managing-configuration-in-react-native-cd2dfb5e6f7b
# touch ~/.gradle/gradle.properties && echo "org.gradle.daemon=true" >> ~/.gradle/gradle.properties
npm -v in a terminal window.npm install -g react-native-cliThis code for get all information on event in request/response (XHR/Fetch) you can manipulation everything in Request/Response like headers, data, & etc.
i don't want to handle 10++ request for get something in request/response, so overwrite window.fetch (globally) to do it.
const OriginalFetch = window.fetch
window.fetch = (url, options) => {