Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New datapoint for audio/video information #268

Open
blackeagle998 opened this issue Sep 8, 2022 · 3 comments
Open

New datapoint for audio/video information #268

blackeagle998 opened this issue Sep 8, 2022 · 3 comments
Labels
enhancement New feature or request

Comments

@blackeagle998
Copy link

Hi,

in "settings/general/information" you can find audio/video details as shown in the following screenshot:
image

Is it possible to get this information as a json structure in one new datapoint or all the fields in many new datapoints?
It would be great to get a short answer for that.

Thank you in advance!

@blackeagle998 blackeagle998 added the enhancement New feature or request label Sep 8, 2022
@denzel1994
Copy link

I would also love to have this.

@foxriver76
Copy link
Owner

If you find the correct commands in telnet we can add it, the adapter is not supposed to perform http requests.

E.g. the resolution could be some of these
Bildschirmfoto 2022-10-23 um 14 32 34

@mllrmnn
Copy link

mllrmnn commented Feb 2, 2023

If you find the correct commands in telnet we can add it, the adapter is not supposed to perform http requests.

E.g. the resolution could be some of these Bildschirmfoto 2022-10-23 um 14 32 34

as far as I could find out, these informations are only available over http-request and not over the telnet API, sadly... you should be able to obtain these informations in xml format with this url:

i have this url in the iobroker parser adapter to get these infos. If you want to obtains some more infos about the audio channels( input & output) use ad http-requests in javascript:

with method POST
this url: http://:8080/goform/AppCommand.xml
and the following body
body='<?xml version="1.0" encoding="utf-8"?> <tx> <cmd id="3"> <name>GetInputSignal</name> <list> <param name="inputsigall"></param> </list> </cmd> <cmd id="3"> <name>GetActiveSpeaker</name> <list> <param name="activespall"></param> </list> </cmd> <cmd id="3"> <name>GetVideoInfo</name> <list> <param name="videooutput"></param> <param name="hdmisigin"></param> <param name="hdmisigout"></param> </list> </cmd> <cmd id="3"> <name>GetAudioInfo</name> <list> <param name="inputmode"></param> <param name="output"></param> <param name="signal"></param> <param name="sound"></param> <param name="fs"></param> </list> </cmd> <cmd id="3"> <name>GetAudyssyInfo</name> <list> <param name="eqname"></param> <param name="eqvalue"></param> <param name="dynamiceq"></param> <param name="dynamicvol"></param> </list> </cmd> </tx> <tx> <cmd id="3"> <name>GetSoundMode</name> <list> <param name="movie"></param> <param name="music"></param> <param name="game"></param> <param name="pure"></param> <param name="auro3d"></param> </list> </cmd> </tx>'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants