You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ set this variable to the directory where your youtube access copy is delivered.
162
162
set this variable to a temporary directory. it is used in the uploadomneon microservice as a temporary place for a file to live before it is uploaded to the omneon server.
163
163
164
164
**10. REGEX4PODCAST**
165
-
this varible holds regular expressions that are queried when makepodcast is run, in order to determine if a file qualifies for podcast creation. If you want all of your files to qualify for podcast creation, enter a "." which matches (almost) any character. Learn more about [regex](https://en.wikipedia.org/wiki/Regular_expression).
165
+
this variable holds regular expressions that are queried when makepodcast is run, in order to determine if a file qualifies for podcast creation. If you want all of your files to qualify for podcast creation, enter a "." which matches (almost) any character. Learn more about [regex](https://en.wikipedia.org/wiki/Regular_expression).
166
166
167
167
**11. DVDLABELPREFIX**
168
168
this variable is for adding a set prefix to the filename for DVDs in makedvd. You may leave this variable blank if you do not want to have a prefix uniformly assigned.
@@ -201,7 +201,7 @@ This variable must be set to yes (Y) or no (N). If set to yes, volume will be ru
201
201
This variable must be set to yes (Y) or no (N). If set to yes, database reporting for mm will be enabled.
202
202
203
203
**23. SQL_ERROR_EMAIL_TO**
204
-
This can be set to include an email address to recieve error reports for database insertion.
204
+
This can be set to include an email address to receive error reports for database insertion.
205
205
206
206
**24. PREMIS_PROFILE**
207
207
Enter the login path information for the database here. (Use the output supplied by the createpremisdb script, or create your own using mysql_config_editor).
@@ -236,7 +236,7 @@ To finalize the database setup, run `mmconfig` (GUI mode) or `mmconfig -t` (CLI)
236
236
### Database Backup
237
237
MM includes a script for database backup. This can be either run manually or set up as an automated process. After configuring the backup script, running `dbbackup` will create a zipped backup in the chosen location. To automate this process use Brew Services. Typing `brew services start mm` will cause the db to be backed up automatically using the included plist file. By default, backups will occur daily at 2:00 AM.
238
238
239
-
To configure database backup use the command `dbbackup -e`. This will open the config file in a terminal editor. Set the neccessary variables to your desired values.
239
+
To configure database backup use the command `dbbackup -e`. This will open the config file in a terminal editor. Set the necessary variables to your desired values.
240
240
241
241
***
242
242
@@ -385,10 +385,10 @@ To view the specific ffmpeg encoding options for each file, view the sourcecode
385
385
* Creates a frame md5 for video files in target package. Relies on package structure used in mm.
386
386
387
387
#### makeframes
388
-
* makeframes creates 10 still images from a video file or package input. Your command will look like: makeframes [input]. To deliver still images to a specific directory, use this command `ingestfile -d [path/to/directory] [input]`.
388
+
* makeframes creates 10 still images from a video file or package input. Your command will look like: `makeframes [input]`. To deliver still images to a specific directory, use this command `ingestfile -d [path/to/directory] [input]`.
389
389
390
390
#### makelossless
391
-
* makelossless losslessly transcodes a video file or package input. Your command will look like this: makelossless [input].
391
+
* makelossless losslessly transcodes a video file or package input. Your command will look like this: `makelossless [input]`.
392
392
* if you would like to transcode using lossless jpeg2000 instead of ffv1 version 3, use option j. Your command will look like this: `makelossless -j [input]`.
393
393
* if you want to run makelossless in "dry-run" mode, which means that the commands will be shown in the terminal but not run, use option n. Your command will look like this: `makelossless -n [input]`.
_report -wt "WARNING - There are ${FLATFACTOR} flat sections of waveform that may indicate clipped audio."
134
+
_report -qn "Enter q to quit, any other key to continue: "
135
+
read A4
136
+
[ "${A4}"=="q" ] &&exit 0
137
+
_writeingestlog "Flat sections of audio waveform""${FLATFACTOR}"
138
+
fi
139
+
}
140
+
118
141
_blackframetest(){
119
142
_black_at_ends "${INPUT}"
120
143
if [ "${HEAD_BLACK}"-gt"30" ] ;then
@@ -368,6 +391,7 @@ AUDIODECISION.option =
368
391
AUDIODECISION.option = Default audio mapping [first audio track used for stereo output]
369
392
AUDIODECISION.option = Only use left of the first audio track [for 21st Century]
370
393
AUDIODECISION.option = Only use right of the first audio track
394
+
AUDIODECISION.option = Only use the first track
371
395
AUDIODECISION.width = 400
372
396
373
397
# cropping strategy
@@ -501,7 +525,7 @@ fi
501
525
if [[ -z"${AUDIODECISION}" ]] ;then
502
526
_report -q "Select an audio strategy?"
503
527
PS3="Selection: "
504
-
selectAUDIODECISIONin"Default audio mapping [first audio track used for stereo output]""Only use left of the first audio track [for 21st Century]""Only use right of the first audio track"
528
+
selectAUDIODECISIONin"Default audio mapping [first audio track used for stereo output]""Only use left of the first audio track [for 21st Century]""Only use right of the first audio track""Only use the first track"
505
529
do
506
530
break
507
531
done
@@ -571,7 +595,9 @@ if [[ "${MODE}" == "preservation" ]] ; then
571
595
if [[ "${FORMULA}"=="check interlacement" ]] ;then
572
596
_get_interlacement_full "${INPUT}"
573
597
fi
574
-
elif [[ "${MODE}"!="audio" ]] ;then
598
+
elif [[ "${MODE}"=="audio" ]] ;then
599
+
_audioreport
600
+
else
575
601
# presumes default, psa, or local mode
576
602
_blackframetest
577
603
_phasechecktest
@@ -629,11 +655,12 @@ else
629
655
fi
630
656
fi
631
657
658
+
# set makederivopts
632
659
unset MAKEDERIVOPTS
633
-
["${AUDIODECISION}"=="Only use left of the first audio track [for 21st Century]"-o"${AUDIODECISION}"=="left" ] && MAKEDERIVOPTS+=(-l)
634
-
[ "${AUDIODECISION}"=="Only use right of the first audio track" ] &&MAKEDERIVOPTS+=(-r)
635
-
[ "${CROPDECISION}"=="Examine the video and auto-crop out black borders (slower)" ] && MAKEDERIVOPTS+=(-c)
636
-
if [ !-z"${FORMULA}" ] ;then
660
+
if [["${CROPDECISION}"=="Examine the video and auto-crop out black borders (slower)" ]] ;then
0 commit comments