Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Epictek committed Oct 23, 2023
1 parent 3843b3d commit 4ff91e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/src/obs_recorder/ConfigService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class Config
{
public string VideoOutputPath { get; set; } = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyVideos), "DeckyStream");
public string VideoOutputPath { get; set; } = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyVideos), "ods");
public bool ReplayBufferEnabled { get; set; } = false;
public int ReplayBufferSeconds { get; set; } = 60;
public string Encoder { get; set; } = "ffmpeg_vaapi";
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "DeckyStream",
"name": "OpenDeckStream",
"author": "Epictek",
"flags": ["debug", "_root"],
"publish": {
"tags": ["root"],
"description": "Streaming and record plugin.",
"image": "https://opengraph.githubassets.com/1/Epictek/DeckyStream"
"image": "https://opengraph.githubassets.com/1/Epictek/OpenDeckStream"
}
}
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default definePlugin((serverApi: ServerAPI) => {
.build();

connection.start().then(() => {
console.log("Connected to DeckyStream backend");
console.log("Connected to ODS backend");
console.log(connection.invoke("GetConfig"));
}).catch((err) => {
console.error(err.toString());
Expand Down Expand Up @@ -200,7 +200,7 @@ export default definePlugin((serverApi: ServerAPI) => {


return {
title: <div className={staticClasses.Title}>DeckyStream</div>,
title: <div className={staticClasses.Title}>OpenDeckStream</div>,
content: <Content serverAPI={serverApi} connection={connection} />,
icon: <FaVideo />,
onDismount() {
Expand Down

0 comments on commit 4ff91e1

Please sign in to comment.