1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/node_modules/videojs-ima/node_modules/.bin/mpd-to-m3u8-json
2023-06-30 09:56:13 -03:00

12 lines
314 B
Bash

#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../mpd-parser/bin/parse.js" "$@"
else
exec node "$basedir/../mpd-parser/bin/parse.js" "$@"
fi