JPC-AV / JPC_AV_videoQC

AV processing scripts for the Johnson Publishing Company archive
GNU General Public License v3.0
1 stars 1 forks source link

feature request: video access file creation #19

Closed BleakleyMcD closed 7 months ago

BleakleyMcD commented 7 months ago

Have process_file.py profile 1 create a .mp4 access file of the .mkv named the same as the .mkv appended with _access

something akin to : ffmpeg -n -vsync 0 -nostdin -v info -hide_banner -stats -i "${INPUT}" -movflags faststart -map 0:v -map 0:a'?' -c:v libx264 -vf "yadif=1,format=yuv420p" -crf 18 -preset fast -maxrate 1000k -bufsize 1835k -c:a aac -strict -2 -b:a 192k -f mp4 "${INPUT_access}.mp4

place the file next to the .mkv

eddycolloton commented 7 months ago

I have this working! https://github.com/JPC-AV/JPC_AV_videoQC/commit/f1ef371dcc6dd24d57724be06ce7bb61851a41be

In the command_config.yaml, need to set [outputs][access_file] to 'yes', and process_file.py will create an access file after making the qctools report. Should this be part of step or step2?

BleakleyMcD commented 7 months ago

@eddycolloton cool cool! step1, please.

eddycolloton commented 7 months ago

Ok! access file added to step1 profile. If step2 profile is run, access file will not be made. https://github.com/JPC-AV/JPC_AV_videoQC/commit/71c31a5df440b85808bda40f19ce81ac76505859

BleakleyMcD commented 7 months ago

yay!