2019-11-23, 23:29
(2019-11-23, 23:22)bam80 Wrote: Also, don't know if overlay descriptions are already supportedYes they are.
(2019-11-23, 23:22)bam80 Wrote: Also, don't know if overlay descriptions are already supportedYes they are.
(2019-11-23, 23:22)bam80 Wrote: Also, don't know if overlay descriptions are already supported (since the script doesn't play any videos for me): https://github.com/JohnCoates/Aerial#mul...ge-support
(2019-11-22, 17:30)bam80 Wrote: Here is the log: http://ix.io/22xD
(2019-11-22, 17:30)bam80 Wrote: Ok, on a second look think maybe I won't need any additional options, will see.
Right now I can't make the script work - the screen just go blank and no video.
Here is the log: http://ix.io/22xD
UPDATE: please see the post below
(2019-11-24, 11:10)bam80 Wrote: @smitchell6879 I'm making further requests here because you have asked, sorry if it fills non-respectful to you.
The full debug log with all system details was sent earlier:
(2019-11-22, 17:30)bam80 Wrote: Here is the log: http://ix.io/22xD
I have non-16:9 display that is why I want to regulate aspect ratio/zoom as in normal video.
Thanks for overlay information support.
(2019-11-24, 11:16)smitchell6879 Wrote: I see it is CoreElec on some kind of android box maybe?Yes, but CoreElec is a Linux.
(2019-11-24, 11:16)smitchell6879 Wrote: Going by the debug the script is doing as it should which make me wonder a few things.Downloaded videos and Local playing are work. Just set it to Streaming an it's not. (neighbor Aerial addon works with streaming just fine)
(2019-11-24, 13:24)bam80 Wrote:I understand coreelec is Linux. But you debug show you where running it on a armlogic chip so I assume some type of Android box or pi? Just trying narrow down where my issue is with the streaming not working.(2019-11-24, 11:16)smitchell6879 Wrote: I see it is CoreElec on some kind of android box maybe?Yes, but CoreElec is a Linux.
(2019-11-24, 11:16)smitchell6879 Wrote: Going by the debug the script is doing as it should which make me wonder a few things.Downloaded videos and Local playing are work. Just set it to Streaming an it's not. (neighbor Aerial addon works with streaming just fine)
(2019-11-24, 16:20)smitchell6879 Wrote: He only supplies 1 Verison per videoI'm not sure what Version do you mean but his videos also have day/night maybe etc. versions. Maybe we could download his videos to make sure they are the same, and in this case just use his URLs?
(2019-11-25, 01:20)bam80 Wrote: Yes it's Set-top-box capable to run Android and Linux. I checked on the PC and streaming works.
So the issue probably with CE indeed.
(2019-11-24, 16:20)smitchell6879 Wrote: He only supplies 1 Verison per videoI'm not sure what Version do you mean but his videos also have day/night maybe etc. versions. Maybe we could download his videos to make sure they are the same, and in this case just use his URLs?
PS: I'm not sure I could use Local play as the workaround..
(2019-11-25, 15:58)smitchell6879 Wrote: If this does not work I will have to drop support for Android and maybe linux as @bam80 streaming is not working on that platform either, the users will have to download the videos else where and stream locally.
(2019-11-30, 23:38)peak3d Wrote:(2019-11-25, 15:58)smitchell6879 Wrote: If this does not work I will have to drop support for Android and maybe linux as @bam80 streaming is not working on that platform either, the users will have to download the videos else where and stream locally.
from libCURL if we use CURL_HTTP_VERSION_2_0 (what we do in kodi):
> Attempt HTTP 2 requests. libcurl will fall back to HTTP 1.1 if HTTP 2 can't be negotiated with the server. (Added in 7.33.0)
Interestingly the HEAD requests (for MIME retrieval) doesn't fail, only the GET request do.
Can you try to pass the mime-type of your file (using listItem property) ? Then the first curl command should be the GET request, and it may work / fallback to 1.1)
Trying to overwrite Upgrade / HTTP2-Settings seem to have no effect, so you can remove them from your Header list.
(2019-11-30, 23:38)peak3d Wrote:(2019-11-25, 15:58)smitchell6879 Wrote: If this does not work I will have to drop support for Android and maybe linux as @bam80 streaming is not working on that platform either, the users will have to download the videos else where and stream locally.
from libCURL if we use CURL_HTTP_VERSION_2_0 (what we do in kodi):
> Attempt HTTP 2 requests. libcurl will fall back to HTTP 1.1 if HTTP 2 can't be negotiated with the server. (Added in 7.33.0)
Interestingly the HEAD requests (for MIME retrieval) doesn't fail, only the GET request do.
Can you try to pass the mime-type of your file (using listItem property) ? Then the first curl command should be the GET request, and it may work / fallback to 1.1)
Trying to overwrite Upgrade / HTTP2-Settings seem to have no effect, so you can remove them from your Header list.