pub trait Combinable {
// Required method
fn combine(
&self,
subtitle_path: impl AsRef<Path>,
subtitle_language: &str,
subtitle_type: SubtitleType,
) -> Result<ExitStatus>;
}Required Methods§
Sourcefn combine(
&self,
subtitle_path: impl AsRef<Path>,
subtitle_language: &str,
subtitle_type: SubtitleType,
) -> Result<ExitStatus>
fn combine( &self, subtitle_path: impl AsRef<Path>, subtitle_language: &str, subtitle_type: SubtitleType, ) -> Result<ExitStatus>
Combine the audio, video, and subtitle using ffmpeg.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.