/useful/trunk-1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/useful/trunk-1

« back to all changes in this revision

Viewing changes to scripts/enc2firefox.sh

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-14 13:11:37 UTC
  • Revision ID: git-v1:194f33c532da1520afdfc427fcfd1c4f235bb728
enc2firefox.sh

* Inisialised variabels to strings in start of scipt

* changed __help () to __usage ()

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#
15
15
####
16
16
 
17
 
__IN_NAME=
18
 
__OUT_NAME=
 
17
__IN_NAME=""
 
18
__OUT_NAME=""
19
19
__USE_WEBM=false
20
20
__USE_FJ=false
21
21
 
22
 
__help () {
 
22
__usage () {
23
23
  echo "enc2firefox.sh -- Make Videos Playable in Firefox"
24
24
  echo " "
25
25
  echo "-i <input video file>     Input Video File."
100
100
      shift
101
101
      ;;
102
102
      -h|--help)
103
 
      __help
 
103
      __usage
104
104
      shift
105
105
      ;;
106
106
      *)
107
 
      __help
 
107
      __usage
108
108
      exit 1
109
109
      shift
110
110
      ;;