diff --git a/src/lib.rs b/src/lib.rs index dc261df..d0091d2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,7 +83,6 @@ impl Tags { } } -// TODO(wathiede): make strem an enum with the tag type stored in codec_type? #[derive(Clone, Deserialize, Debug, Serialize)] #[serde(tag = "codec_type")] enum Stream { @@ -180,7 +179,6 @@ pub struct SubtitleFormat { #[derive(Clone, Deserialize, Debug, Serialize)] pub struct CompactMetadata { bit_rate: usize, - // TODO(wathiede): make this a custom Duration type that pretty prints H:M:S pub duration: f32, filename: String, format_name: String, @@ -236,7 +234,6 @@ pub struct MovieLibrary { fn json_metadata_for_path + AsRef>(path: P) -> Result { let mut cmd = Command::new("ffprobe"); - // TODO(wathiede): maybe add "-select_streams v" cmd.args(&[ "-v", "quiet",