Luke

Results 11 comments of Luke

Thank you for the information, I will try your recommendation and also investigate how we can improve it.

Normally you can't support these URLs because of URL standards, but I will try adding redirect the next week.

It is a lot harder to implement it correctly than I thought, but it would be useful to implement this feature. ### Current plans: - [x] Ability to create ExpressJS...

I tried it before (to convert MKV to MP4). The issue was, that it needs a stream from the start. So you lose skipping support (you can only watch video...

File stopping is implemented: https://github.com/KiraLT/torrent-stream-server/blob/8adae33f904c885c7aaab6555d99022c9e9fc31e/src/api/stream.ts#L78-L80 But I also noticed that it doesn't work in some cases. I will need to find a better solution for this.

Added fix for frontend player, now it's destroyed when react component is destoyed. However, file stopping is buggy webtorrent/webtorrent#164. There is a pending PR that could fix it (webtorrent/webtorrent#2115) or...

I am not sure how should it work. In theory, it could firstly load subtitles from the video and only then start streaming, but I don't think it is possible...

We can use something like [express-session](https://www.npmjs.com/package/express-session), but it requires some kind of database. If we wish to have stateless sessions, we can use [JWT](https://jwt.io/). So [express-session-jwt](https://www.npmjs.com/package/express-session-jwt) may work, or we...

If you need to support both 17 and older NodeJS versions you can use [if-node-version](https://www.npmjs.com/package/if-node-version) to execute different commands for different NodeJS versions: ```json { "scripts": { "build": "if-node-version '>=...

I had error `ReferenceError: navigator is not defined`. To solve this I [followed this suggestion](https://github.com/dabit3/next.js-amplify-workshop/issues/21#issuecomment-843299195). To sum up: 1. Create a separate component where you use `react-hook-speech-to-text` 2. Use [lazy...