brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
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 React, { Component } from 'react'; | |
| import { Text, FlatList, View, StyleSheet, Button } from 'react-native'; | |
| import { Constants } from 'expo'; | |
| const TouchableTextConst = props => { | |
| console.log(`TouchableTextConst${props.id} rendered, callback (re)created :(`); | |
| const textPressed = () => { | |
| props.onPressItem(props.id); | |
| }; | |
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')source:https://gist.github.com/Piasy/b5dfd5c048eb69d1b91719988c0325d8#gistcomment-2571754
ffmpeg -y -i video.mov -c:v libx264 -crf 23 -profile:v baseline \
-c:a aac -strict experimental video.mp4
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
| # 1. Install Python | |
| # Linux: apt-get install python3 (python should already be installed) | |
| # MacOS: brew install python3 (check homebrew if you do not have it yet) | |
| # Windows: download Python from Microsoft Store (you can try with chocolatey package manager also) | |
| # 2. Install PIP, Python package manager | |
| # Linux: apt-get install pip3 | |
| # MacOS: brew install pip3 (should be installed with Python3 normally, run it in any case) | |
| # Windows: | |
| # 3. Install script dependencies | |
| # pip3 install pygsheets pandas |
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
| nXM9yp14OzOcXuf8DHtLs9STV33emnaFH891ZuFx5eI= |
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
| """ | |
| Convert YouTube subtitles(vtt) to human readable text. | |
| Download only subtitles from YouTube with youtube-dl: | |
| youtube-dl --skip-download --convert-subs vtt <video_url> | |
| Note that default subtitle format provided by YouTube is ass, which is hard | |
| to process with simple regex. Luckily youtube-dl can convert ass to vtt, which | |
| is easier to process. |
OlderNewer