Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| #!/bin/sh | |
| ########################################### | |
| # Output file for HTML5 video # | |
| # Requirements: # | |
| # - handbrakecli # | |
| # - ffmpeg # | |
| # - ffmpeg2theora # | |
| # # | |
| # usage: # |
| #!/bin/sh | |
| # Output file for HTML5 video | |
| # requirements: ffmpeg .6+ | |
| # usage: ./html5video.sh infile.mp4 640x360 | |
| target_directory='converted' | |
| file=`basename $1` | |
| filename=${file%.*} | |
| filepath=`dirname $1` |
| #!/bin/bash | |
| # This shell script will process & encode a single video file, and output 3 | |
| # seperate files in the following formats: WebM, Ogg Theora, & h.264 for | |
| # streaming via an HTML5 player. | |
| # | |
| # You'll need ffmpeg, ffmpeg2theora, & HandbrakeCLI installed to run this | |
| # script. ffmpeg and ffmpeg2theora can be installed via Homebrew on a Mac. | |
| # If you're using Ubuntu, use the PPA at | |
| # https://launchpad.net/~jon-severinsson/+archive/ffmpeg |
| #!/bin/sh | |
| #################################### | |
| # Output file for HTML5 video # | |
| # Requirements: # | |
| # - handbrakecli # | |
| # - ffmpeg # | |
| # - ffmpeg2theora # | |
| # # | |
| # usage: # |