open video in snap

This commit is contained in:
Salem Yaslem 2021-03-08 14:02:32 +03:00
parent f6ef0abf17
commit 3aba5eaf39
2 changed files with 48 additions and 19 deletions

View File

@ -21,7 +21,6 @@ parts:
stage-packages: stage-packages:
- libappindicator3-1 - libappindicator3-1
- x11-utils - x11-utils
- xdg-utils
build-packages: build-packages:
- libappindicator3-dev - libappindicator3-dev
- clang - clang

View File

@ -1,11 +1,7 @@
extern crate subprocess; extern crate subprocess;
use chrono::prelude::*; use chrono::prelude::*;
use gtk::prelude::*; use gtk::prelude::*;
use gtk::{ use gtk::{CheckButton, ComboBoxText, Dialog, Entry, FileChooser, ProgressBar, SpinButton, Window};
CheckButton, ComboBoxText, Entry, FileChooser,
SpinButton, Dialog, ProgressBar,
Window
};
use std::collections::HashMap; use std::collections::HashMap;
use std::path::PathBuf; use std::path::PathBuf;
use std::process::Command; use std::process::Command;
@ -27,8 +23,9 @@ impl ProgressWidget {
pub fn new(window: &Window) -> ProgressWidget { pub fn new(window: &Window) -> ProgressWidget {
ProgressWidget { ProgressWidget {
dialog: Dialog::new(), dialog: Dialog::new(),
progress: ProgressBar::new() progress: ProgressBar::new(),
}.init(&window) }
.init(&window)
} }
pub fn init(&self, window: &Window) -> ProgressWidget { pub fn init(&self, window: &Window) -> ProgressWidget {
@ -97,7 +94,7 @@ pub struct Ffmpeg {
pub process_id: Option<u32>, pub process_id: Option<u32>,
pub saved_filename: Option<String>, pub saved_filename: Option<String>,
pub unbound: Option<Sender<bool>>, pub unbound: Option<Sender<bool>>,
pub progress_widget: ProgressWidget pub progress_widget: ProgressWidget,
} }
impl Ffmpeg { impl Ffmpeg {
@ -224,7 +221,9 @@ impl Ffmpeg {
&self.progress_widget.show(); &self.progress_widget.show();
// kill the process to stop recording // kill the process to stop recording
if self.process_id.is_some() { if self.process_id.is_some() {
&self.progress_widget.set_progress("Stop Recording".to_string(), 1, 5); &self
.progress_widget
.set_progress("Stop Recording".to_string(), 1, 5);
Command::new("kill") Command::new("kill")
.arg(format!("{}", self.process_id.unwrap())) .arg(format!("{}", self.process_id.unwrap()))
.output() .output()
@ -246,7 +245,11 @@ impl Ffmpeg {
) )
.exists(); .exists();
if self.unbound.is_some() { if self.unbound.is_some() {
&self.progress_widget.set_progress("Stop Wayland Video Recording".to_string(), 2, 5); &self.progress_widget.set_progress(
"Stop Wayland Video Recording".to_string(),
2,
5,
);
self.unbound self.unbound
.as_ref() .as_ref()
.unwrap() .unwrap()
@ -279,7 +282,11 @@ impl Ffmpeg {
.unwrap(); .unwrap();
if is_audio_record { if is_audio_record {
&self.progress_widget.set_progress("Stop Wayland Audio Recording".to_string(), 3, 5); &self.progress_widget.set_progress(
"Stop Wayland Audio Recording".to_string(),
3,
5,
);
// merge audio with video // merge audio with video
let mut ffmpeg_audio_merge_command = Command::new("ffmpeg"); let mut ffmpeg_audio_merge_command = Command::new("ffmpeg");
@ -315,7 +322,11 @@ impl Ffmpeg {
} }
} }
} else if is_audio_record { } else if is_audio_record {
&self.progress_widget.set_progress("Convert Audio to choosen format".to_string(), 3, 5); &self.progress_widget.set_progress(
"Convert Audio to choosen format".to_string(),
3,
5,
);
println!("convert audio"); println!("convert audio");
Command::new("ffmpeg") Command::new("ffmpeg")
.arg("-f") .arg("-f")
@ -338,11 +349,17 @@ impl Ffmpeg {
// execute command after finish recording // execute command after finish recording
if !(self.command.get_text().trim() == "") { if !(self.command.get_text().trim() == "") {
&self.progress_widget.set_progress("execute custom command after finish".to_string(), 4, 5); &self.progress_widget.set_progress(
"execute custom command after finish".to_string(),
4,
5,
);
Exec::shell(self.command.get_text().trim()).popen().unwrap(); Exec::shell(self.command.get_text().trim()).popen().unwrap();
} }
&self.progress_widget.set_progress("Finish".to_string(), 5, 5); &self
.progress_widget
.set_progress("Finish".to_string(), 5, 5);
&self.progress_widget.hide(); &self.progress_widget.hide();
} }
@ -385,6 +402,14 @@ impl Ffmpeg {
pub fn play_record(self) { pub fn play_record(self) {
if self.saved_filename.is_some() { if self.saved_filename.is_some() {
if is_snap() {
// open the video using snapctrl for snap package
Command::new("snapctl")
.arg("user-open")
.arg(self.saved_filename.unwrap())
.spawn()
.unwrap();
} else {
Command::new("xdg-open") Command::new("xdg-open")
.arg(self.saved_filename.unwrap()) .arg(self.saved_filename.unwrap())
.spawn() .spawn()
@ -392,9 +417,14 @@ impl Ffmpeg {
} }
} }
} }
}
fn is_wayland() -> bool { fn is_wayland() -> bool {
std::env::var("XDG_SESSION_TYPE") std::env::var("XDG_SESSION_TYPE")
.unwrap() .unwrap()
.eq_ignore_ascii_case("wayland") .eq_ignore_ascii_case("wayland")
} }
fn is_snap() -> bool {
std::env::var("SNAP").unwrap_or(String::new()).len() > 0
}