Matt Zucker
Matt Zucker
Part of the problem, I think, is in `computeReloadInterval`. ``` var reloadInterval = 1000 * newDetails.levelTargetDuration; var reloadIntervalAfterMiss = reloadInterval / 2; var timeSinceLastModified = newDetails.age; var useLastModified = timeSinceLastModified...
Thank you, yes it appears that I have a bug in my playlist regarding `EXTINF` exceeding the target duration. To make sure I'm understanding, if `newDetails.age` was changed to milliseconds,...
Sounds good to me. I would be happy to contribute a PR, and should be able to start work on it shortly.
Is this something you can revisit? It would be very helpful to me.
I'm having this same problem. I get `*_grpc_pb.js` files along with a bunch of `.js`, but it does not generate `*_pb.js`. The `grpc_pb.js` references `_pb.js` but they are no where...
I ran this command ``` grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./dist/js/ --grpc_out=grpc_js:./dist/js/ --proto_path=./proto ./proto/*.proto ```
https://github.com/mattzucker/grpc-test
Got it working. I was already using the `import_style` option, but because of your comment regarding `binary` as a noop I decided to see what would happen if I took...
I was wrong. It has to do with the comma in the command and the fact that I'm running it on Windows with Powershell. Incredibly frustrating. Thank you @eighty4 for...