Skip to content

Commit

Permalink
Fix Hd video publish
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsee committed Oct 10, 2021
1 parent 6a60401 commit 5799a77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ private RecordingMetadata PublishRecording(Recording recording, Recording metada

if (File.Exists(Path.Combine(publishFolder, targetFolderName + "/output_1080p/stage.mp4")))
{
metadata.StageVideo = targetFolderName + "/output_1080p/stage.mp4";
metadata.StageVideoHd = targetFolderName + "/output_1080p/stage.mp4";
}

if (File.Exists(Path.Combine(publishFolder, targetFolderName + "/output_1080p/talkinghead.mp4")))
{
metadata.PresenterFileName = targetFolderName + "/output_1080p/talkinghead.mp4";
metadata.PresenterFileNameHd = targetFolderName + "/output_1080p/talkinghead.mp4";
}
}

Expand Down

0 comments on commit 5799a77

Please sign in to comment.