backport: fix clippy warning duplicate naming

This commit is contained in:
jb-alvarado 2023-10-08 20:47:54 +02:00
parent b96e765f0b
commit 53aebc779b

View File

@ -13,7 +13,7 @@ use std::{
use std::env;
use chrono::{prelude::*, Duration};
use ffprobe::{ffprobe, Format, Stream};
use ffprobe::{ffprobe, Format, Stream as FFStream};
use rand::prelude::*;
use regex::Regex;
use reqwest::header;
@ -205,8 +205,8 @@ fn is_empty_string(st: &String) -> bool {
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct MediaProbe {
pub format: Option<Format>,
pub audio_streams: Vec<Stream>,
pub video_streams: Vec<Stream>,
pub audio_streams: Vec<FFStream>,
pub video_streams: Vec<FFStream>,
}
impl MediaProbe {