Finally added the ability to transcode videos

This commit is contained in:
2022-08-31 18:55:22 -04:00
parent a778de5b34
commit 0b6f6fea02
2 changed files with 32 additions and 5 deletions

View File

@ -2,10 +2,10 @@ use std::fs;
use std::path::Path;
pub struct Repository {
base_dir: String,
ingest_dir: String,
archive_dir: String,
output_dir: String,
pub base_dir: String,
pub ingest_dir: String,
pub archive_dir: String,
pub output_dir: String,
}
impl Repository {