Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Change mp4 to webm (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
feymartynov committed Jul 2, 2020
1 parent 454575f commit 04a56ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/endpoint/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn bucket_name(room: &db::room::Object) -> String {
}

fn record_name(rtc: &db::rtc::Object) -> String {
format!("{}.source.mp4", rtc.id())
format!("{}.source.webm", rtc.id())
}

///////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -272,7 +272,7 @@ mod test {
method: "stream.upload".to_string(),
id: rtc.id(),
bucket: format!("origin.webinar.{}", USR_AUDIENCE).to_string(),
object: format!("{}.source.mp4", rtc.id()).to_string(),
object: format!("{}.source.webm", rtc.id()).to_string(),
}
}
);
Expand Down

0 comments on commit 04a56ab

Please sign in to comment.