hts-ozeki

Results 1 comments of hts-ozeki

借りたiPhoneで試したところ、VLCが起動するけれどもVLCのライブラリ画面になり、再生が始まりませんでした。 他の録画ソフトウェアでは動いているので、どうなっているか調べたところ「PROTOCOL://ADDRESS」部分を実際のURIに置換した後でencodeURIComponent()でURIエンコードしているようです。 ということは、PROTOCOL・ADDRESS部分に何かURIエンコードが必要な文字が入ってこない限り、Ry0さんの対応で大丈夫そうです。 根本的に対処するにはこの辺でしょうか。(ver 2.6.20の例) client/src/model/state/onair/OnAirSelectStreamState.ts public getM2TSURL(): string | null client/src/model/state/recorded/detail/RecordedDetailState.ts public getVideoURL(video: apid.VideoFile): string | null client/src/model/state/recorded/detail/RecordedDetailState.ts public getVideoDownloadURL(video: apid.VideoFile): string | null