Blain Smith
Blain Smith
I know this is an old issue, but I agree with @kiranos. I was hoping to use this for IoT device health and I have over 5,000 devices I can...
I have a draft of this I will PR later tonight.
This could be promising in order to break the job into stages. Otherwise the entire job will block and complete in a goroutine. https://blog.golang.org/pipelines A job seems to have 3...
Yeah, that makes more sense. Definitely a great feature to have!
I was about to file an issue to use LSP and found this. Some of the benefits of using VSCode over Code is the code completion. I would love to...
Any chance this demo could make a comeback?
Any more on this even tho this is a very old issue?
Wow, these are awesome additions! I'd love to take advantage of all of these. If you need help reviewing to get this PR merged I would be glad to. I...
Great, I will poke around at it. If you ever need another maintainer I'd be glad to help out. I do rely on this plugin a lot so I would...
So I found and issue with `isLive()` and `isVOD()` and that is with the following: ``` #EXTM3U #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio-1",NAME="Audio",LANGUAGE="en",AUTOSELECT=YES,URI="audio_0_128000_hls.m3u8" #EXT-X-STREAM-INF:BANDWIDTH=4928000,CODECS="avc1.64000d,mp4a.40.2",RESOLUTION=1280x544,AUDIO="audio-1" video_0_2400000_hls.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=2528000,CODECS="avc1.64000d,mp4a.40.2",RESOLUTION=854x362,AUDIO="audio-1" video_0_1200000_hls.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=1728000,CODECS="avc1.64000d,mp4a.40.2",RESOLUTION=640x272,AUDIO="audio-1" video_0_800000_hls.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=928000,CODECS="avc1.64000d,mp4a.40.2",RESOLUTION=426x180,AUDIO="audio-1" video_0_400000_hls.m3u8 ``` This is actually...