Skip to content

Instantly share code, notes, and snippets.

View atom2ueki's full-sized avatar
☮️

Tony Li atom2ueki

☮️
View GitHub Profile
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
const React = require('react-native');
const FBSDKCore = require('react-native-fbsdkcore');
const FBSDKLogin = require('react-native-fbsdklogin');
@Jakz
Jakz / ffmpeg.md
Last active February 29, 2020 15:22
ffmpeg cheat sheet

Concatenate multiple VOB into same

ffmpeg -i "concat:/Path/File1.VOB|/Path/File2.VOB" -c copy file_output.vob

Convert VOB video to x256

ffmpeg -i file_input.vob -vf yadif -c:v libx265 -preset slow -crf 20 -c:a aac -b:a 256k file_output.mkv

Cropping a video