Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions alass-cli/src/video_decoder/ffmpeg_binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ impl<'de> Deserialize<'de> for CodecType {
#[derive(Debug, Deserialize)]
struct Stream {
pub index: usize,
pub codec_long_name: String,
pub channels: Option<usize>,
/// `.mkv` does not store the duration in the streams; we have to use `format -> duration` instead
pub duration: Option<String>,
Expand Down Expand Up @@ -185,7 +184,7 @@ impl VideoDecoderFFmpegBinary {
OsString::from("-v"),
OsString::from("error"),
OsString::from("-show_entries"),
OsString::from("format=duration:stream=index,codec_long_name,channels,duration,codec_type"),
OsString::from("format=duration:stream=index,channels,duration,codec_type"),
OsString::from("-of"),
OsString::from("json"),
OsString::from(file_path.as_ref()),
Expand Down