Install ffmpeg
brew install ffmpeg
Download file through url, like this:
ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://url-file.domain.m3u8" -c copy video.mp4
Install ffmpeg
brew install ffmpeg
Download file through url, like this:
ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://url-file.domain.m3u8" -c copy video.mp4
| (* | |
| ** TRANSCODE TO APPLE UNIVERSAL | |
| ** This droplet will convert any file/folder dropped onto it or selected to the Apple Universal format using Handbrake. | |
| ** It currently will reuse the same filename for all files except MTS files, with which it will rename using the file's creation timestamp. | |
| ** | |
| ** by Jason Chong | |
| ** http://jasechong.wordpress.com | |
| ** jchong@iinet.net.au | |
| ** | |
| ** Revision Description |
| bash -c ' | |
| <% if knife_config[:bootstrap_proxy] -%> | |
| ( | |
| cat <<'EOP' | |
| <%= "proxy = #{knife_config[:bootstrap_proxy]}" %> | |
| EOP | |
| ) > ~/.curlrc | |
| <% end -%> | |
| if [ ! -f /usr/bin/chef-client ]; then |
| bash -c ' | |
| if [ ! -f /usr/bin/chef-client ]; then | |
| apt-get update | |
| apt-get install -y build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev autoconf libc6-dev | |
| bash < <(curl -s https://rvm.beginrescueend.com/install/rvm) | |
| ( | |
| cat <<'EOP' | |
| [[ -s "/usr/local/rvm/scripts/rvm" ]] && source "/usr/local/rvm/scripts/rvm" # This loads RVM into a shell session. | |
| EOP |
| public class MyTest { | |
| @Rule | |
| public MethodRule screenshot = new ScreenshotOnFailureRule(); | |
| @Test | |
| public void myTest() { ... } | |
| ... | |
| } |