add audio record as only option for wayland

This commit is contained in:
Salem Yaslem 2021-02-21 14:37:54 +03:00
parent d7eb797422
commit b5f262d95b

View File

@ -189,11 +189,15 @@ impl Ffmpeg {
// bind the connection to gnome screencast proxy // bind the connection to gnome screencast proxy
let gnome_screencast_proxy = GnomeScreencastProxy::new(&connection).unwrap(); let gnome_screencast_proxy = GnomeScreencastProxy::new(&connection).unwrap();
gnome_screencast_proxy.stop_screencast().unwrap(); gnome_screencast_proxy.stop_screencast().unwrap();
if self.unbound.is_some() {
let is_audio_record = std::path::Path::new( let is_audio_record = std::path::Path::new(
format!("{}.temp.audio", self.saved_filename.as_ref().unwrap()).as_str(), format!("{}.temp.audio", self.saved_filename.as_ref().unwrap()).as_str(),
) )
.exists(); .exists();
let is_video_record = std::path::Path::new(
format!("{}.temp", self.saved_filename.as_ref().unwrap()).as_str(),
)
.exists();
if self.unbound.is_some() {
self.unbound self.unbound
.as_ref() .as_ref()
.unwrap() .unwrap()
@ -201,6 +205,7 @@ impl Ffmpeg {
.unwrap_or_default(); .unwrap_or_default();
// convert webm to the format user choose using ffmpeg // convert webm to the format user choose using ffmpeg
if is_video_record {
let mut ffmpeg_convert_command = Command::new("ffmpeg"); let mut ffmpeg_convert_command = Command::new("ffmpeg");
ffmpeg_convert_command.arg("-f"); ffmpeg_convert_command.arg("-f");
ffmpeg_convert_command.arg("webm"); ffmpeg_convert_command.arg("webm");
@ -211,13 +216,16 @@ impl Ffmpeg {
"{}{}", "{}{}",
self.saved_filename.as_ref().unwrap(), self.saved_filename.as_ref().unwrap(),
if is_audio_record { if is_audio_record {
format!(".temp.without.audio.{}", self.filename.2.get_active_id().unwrap().to_string()) format!(
".temp.without.audio.{}",
self.filename.2.get_active_id().unwrap().to_string()
)
} else { } else {
"".to_string() "".to_string()
} }
)); ));
ffmpeg_convert_command.arg("-y"); ffmpeg_convert_command.arg("-y");
ffmpeg_convert_command.spawn().unwrap().wait().unwrap(); ffmpeg_convert_command.output().unwrap();
std::fs::remove_file(format!("{}.temp", self.saved_filename.as_ref().unwrap())) std::fs::remove_file(format!("{}.temp", self.saved_filename.as_ref().unwrap()))
.unwrap(); .unwrap();
@ -241,7 +249,7 @@ impl Ffmpeg {
ffmpeg_audio_merge_command.arg("aac"); ffmpeg_audio_merge_command.arg("aac");
ffmpeg_audio_merge_command.arg(self.saved_filename.as_ref().unwrap()); ffmpeg_audio_merge_command.arg(self.saved_filename.as_ref().unwrap());
ffmpeg_audio_merge_command.arg("-y"); ffmpeg_audio_merge_command.arg("-y");
ffmpeg_audio_merge_command.spawn().unwrap(); ffmpeg_audio_merge_command.output().unwrap();
std::fs::remove_file(format!( std::fs::remove_file(format!(
"{}.temp.audio", "{}.temp.audio",
self.saved_filename.as_ref().unwrap() self.saved_filename.as_ref().unwrap()
@ -255,6 +263,25 @@ impl Ffmpeg {
.unwrap(); .unwrap();
} }
} }
} else if is_audio_record {
println!("convert audio");
Command::new("ffmpeg")
.arg("-f")
.arg("ogg")
.arg("-i")
.arg(format!(
"{}.temp.audio",
self.saved_filename.as_ref().unwrap()
))
.arg(format!("{}", self.saved_filename.as_ref().unwrap()))
.output()
.unwrap();
std::fs::remove_file(format!(
"{}.temp.audio",
self.saved_filename.as_ref().unwrap()
))
.unwrap();
}
} }
// execute command after finish recording // execute command after finish recording