]> code.delx.au - transcoding/blobdiff - identify-dvd
identify-disc support for bluray
[transcoding] / identify-dvd
diff --git a/identify-dvd b/identify-dvd
deleted file mode 100755 (executable)
index 6e08663..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-if [ -z "$1" ]; then
-    echo "Usage: $0 dvd-device"
-    exit 1
-fi
-
-mplayer 2> /dev/null \
-    -quiet -ao null -vo null -frames 0 -identify -dvd-device "$1" dvd:// | \
-    grep 'ID_DVD_TITLE_[0-9]*_LENGTH' | \
-    sed -e 's/ID_DVD_TITLE_//' -e 's/_LENGTH=/  /' | \
-    sort -n
-