I need to determine if the player is carrying headphones (head worn or earplug style)

  • Tomcat replied to this.
  • packrat

    Megalomaniak

    xyz

    Megalomaniak

    Thank you for your answers. In the end, I have decided to let the players set up whether they have headphones in the game themselves. This approach is better for player privacy and can also solve my problem

    one way is to take a picture using integrated webcam, and then use some image parser to see if the image contains the headphone. i remember that python had that capability/library rto do so, not mush of taking a picture using webcam.

    What about players that dont have webcams? Not sure. Maybe just add a popup for a player to select if they wear headphones or not.

      JiuMengD I need to determine if the player is carrying headphones (head worn or earplug style)

      Well, in theory, the system should know if the headphones are plugged in or not. But I doubt Godot has that level of access.

        If a game had the ability to determine if I wear headphones - I'd consider that a very serious invasion of privacy. Don't bother with useless intrusive gimmicks like that.

          xyz If a game had the ability to determine if I wear headphones - I'd consider that a very serious invasion of privacy.

          There are more and more invasions of privacy these days. With regard to the state, there is a grain of logic — if the state will not watch over its citizens, then someone else's state will watch over them. But in the case of corporations, there is not even such an extremely weak justification. But there is an invasion.

          kuligs2

          Tomcat

          xyz
          Hey, hello. Godot can use AudioServer. get_input_device_list() to retrieve the names of all detected audio input devices. I just need to determine if this is a headphone or in ear device

            kuligs2 The suggestion of allowing players to choose whether to wear headphones is very good!

              JiuMengD well unless headphone is standalone usb device you will never know for sure. I have soundblaster z with many inputs. I could use digital output for headphones if i wanted and you would never know..

              JiuMengD
              you're looking for something more along the lines of get_output_port_list(). it doesn't exist.
              if you're trying to route audio to the headphone port rather than the speakers, the operating system is supposed to take care of that.
              if it doesn't, i advice you stop downloading strange files. or switch to a more stable linux distro.

              Edit: if a forum of people are telling you your design decision is creepy, its worth reconsidering.

                There might be something for each OS that could perhaps be polled via the OS class, but each OS likely has it's relevant executable or API to run for determining this. It might be worth opening an issue on the proposals repo for a feature request tho.

                I don't see this as any more of a privacy violation than checking for input devices like gamepads tho. Seems like a valid enough feature request.

                As for getting input from a mic or webcam or such where there'd be a genuine security and privacy concern, that's a whole other matter and the security layer for such is up to the OS. On linux sessions running wayland user would likely get a password prompt to give permission for the relevant portal to be run by a specific application.

                  Note I said (and bolded) "wear", not "device connected". The latter is only creepy, well, depending on the actual intent.

                    For all intents and purposes when headphones are plugged in, if the user wants to actually hear something they also likely will wear the headphones, so in terms of inference... same difference?

                      Megalomaniak My wife would beg to differ. She plays games with headphones plugged but lying on the table. Obviously, you can't infer with certainty if the headphones are on the head by looking at the plugged status. You need more information... that can only be gained via more privacy intrusion, i.e. by looking at the user through some camera 🙂

                      But I guess the OP just meant how to determine plugged status.

                        xyz If she is not wearing them then she is probably not looking to hear much of it at that time, was more to my point.

                        JiuMengD This approach is better for player privacy and can also solve my problem

                        It's certainly the simpler solution, which is often also the best.

                        JiuMengD In the end, I have decided to let the players set up whether they have headphones in the game themselves.

                        Yeah, that's the best option. I have my speakers connected through an amplifier that I can connect headphones to. When I plug them in, the speakers themselves are turned off. So there's no way to tell what I'm listening to through the hardware at the moment.

                        i dont even get why there is distinction for some applications/games - headphones or speakers. Its just audio. Why thy dont ask if you have monitor or tv then? Same principles?

                        Im talking off topic but this seems like its stupid atleast for me.

                        I get that the headphones have only stereo stuff and speakers can be arranged up to or more than 7.1 but still its just an audio..

                          kuligs2 The headphone option is particularly relevant to the headphones that are lacking amplification.

                          edit: worth reading comments here