running:
bash create-vod-hls.sh beach.mkv
will produce:
beach/
|- playlist.m3u8
|- 360p.m3u8
running:
bash create-vod-hls.sh beach.mkv
will produce:
beach/
|- playlist.m3u8
|- 360p.m3u8
| From 481b318b11a4c572315f4ea47fd58690263e5330 Mon Sep 17 00:00:00 2001 | |
| Date: Wed, 1 Mar 2017 21:25:06 +0100 | |
| Subject: [PATCH] SVG importer shader fixes | |
| --- | |
| .../Shaders/Resources/Standard/UnitySVG.cginc | 64 +++++++++++++--------- | |
| 1 file changed, 38 insertions(+), 26 deletions(-) | |
| diff --git a/Assets/SVG Importer/Plugins/Shaders/Resources/Standard/UnitySVG.cginc b/Assets/SVG Importer/Plugins/Shaders/Resources/Standard/UnitySVG.cginc | |
| index e2fd6b0..5ab3afd 100644 |
| class CreateUser < Context | |
| def initialize(attributes) | |
| @attributes = attributes | |
| end | |
| def self.call(*args) | |
| new(*args).tap(&:call) | |
| end | |
| def callback(*args) |
| # taken from http://forum.unity3d.com/threads/84953-Android-Permissions-and-the-Manifest.xml | |
| # | |
| if [ $# -ne 3 ]; then | |
| echo "ERROR Missing argument" | |
| echo "Usage: $0 file.apk newmanifest.xml target.apk" | |
| exit -1 | |
| fi | |
| APK=$1 | |
| MANIFEST=$2 |