diff --git a/Kyoo/ClientApp/src/app/player/player.component.html b/Kyoo/ClientApp/src/app/player/player.component.html index 517c1a25..359ea288 100644 --- a/Kyoo/ClientApp/src/app/player/player.component.html +++ b/Kyoo/ClientApp/src/app/player/player.component.html @@ -8,6 +8,29 @@
+ + +

Stats

+
+ +
+ + Play method: {{this.playMethod}} +
+
+ Video Container: {{this.item.container}} {{getSupportedFeature("container")}} +
+ Video Codec: {{this.item.video.codec}} {{getSupportedFeature("video")}} +
+ Audio Codec: {{this.item.audios[0].codec}} {{getSupportedFeature("audio")}} +
+ Subtitle Codec: {{this.selectedSubtitle ? this.selectedSubtitle.codec : "none"}} {{getSupportedFeature("subtitle")}} +
+
+
+
@@ -16,29 +39,6 @@
{{this.item.showTitle}}
- - -

Stats

-
- -
- - Play method: {{this.playMethod}} -
-
- Video Container: {{this.item.container}} {{getSupportedFeature("container")}} -
- Video Codec: {{this.item.video.codec}} {{getSupportedFeature("video")}} -
- Audio Codec: {{this.item.audios[0].codec}} {{getSupportedFeature("audio")}} -
- Subtitle Codec: {{this.selectedSubtitle ? this.selectedSubtitle.codec : "none"}} {{getSupportedFeature("subtitle")}} -
-
-
-
diff --git a/Kyoo/Startup.cs b/Kyoo/Startup.cs index a9ef229b..d1146e6f 100644 --- a/Kyoo/Startup.cs +++ b/Kyoo/Startup.cs @@ -78,9 +78,6 @@ namespace Kyoo app.UseSpa(spa => { - // To learn more about options for serving an Angular SPA from ASP.NET Core, - // see https://go.microsoft.com/fwlink/?linkid=864501 - spa.Options.SourcePath = "ClientApp"; if (env.IsDevelopment())