Fire TV - start & exit of "mirroring mode" #351
-
App Namemirroring mode (fire tv 4k) Device PlatformAmazon Fire App Store Link and/or URL to .apk file if sideloaded(system integrated) Application Detailsnormally, it is needed to go into settings menu, and then click on "duplicate screen" to activate Optional Commentswould be great, if that could be done with a single button and not doing it through complicate way through "settings menu" and so on |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Wow! This idea led me down quite a long road of issuing commands to see what happens... Here is what I found: Unexpectedly, when my FireTV device is in Display Mirroring mode, it stops receiving ADB commands. In fact, it seems that all ADB communication is severed while in that mode. So far I've only tested this with my Fire TV 4 Series (2021) so I'm hoping that other Fire TV devices won't have this same behavior. The only way I was able to restore ADB/Firemote control after entering mirroring mode is to press the back button on my physical remote control. With that surprising setback of not being able to issue an ADB command to interrogate my TV while it was in Display Mirroring mode, I had to do a lot of poking around, but eventually I found what I was looking for. This command will start the Display Mirroring Mode
So... I can definitely add a function button that launches the display mirroring mode, but when you press it you might be stuck there without a "Firemote" way of getting back. What are your thoughts about that? |
Beta Was this translation helpful? Give feedback.
-
wow ... you are amazing !!! and YES, there is no way bac via adb cmd, because you can't connect, as there is not any more "NETWORK" available. Technical details so, i tested your given adb cmd, and it was working to activate the mirroring mode ... hmm, and now ? how to disable without a real (IR) firemote control ? but without ? and only doing it via adb (if the network and adb server is disabled by MIRRORING MODE) - that is impossible as network/adb not available so, the challenge is maybe, if the keys/events can be simulated ... not sure, at the moment ... need brain strorming ... https://developer.amazon.com/docs/fire-tv/remote-input.html on the other side - i can live with that dirty solution |
Beta Was this translation helpful? Give feedback.
-
in any case, i would not add these feature to a button, as it can also be done via a script and executing the adb comand. adb shell am start com.amazon.cast.sink/.DisplayMirroringSinkActivity not needed to add it with an extra button ...as long as it can not be disabled with another method ... additionally, i hate on this miracast, that it is only a screen mirroring ... nothing else, and need to switch to that mode ... i guess, there is a "AirReceiver" for fire tv stick... and on android and IOS supported by the "real google cast" and/or airplay by deault no apps needed. |
Beta Was this translation helpful? Give feedback.
-
I'm going to convert this issue into a Q&A discussion just in case someone else has a similar request. It's probably easier to find it that way. |
Beta Was this translation helpful? Give feedback.
-
I'M trying to keep it short - as it would be a long story .... 1.) internal built-in MIRRORING SYSTEM so, we would need an app on firestick, which supports much more: MIRACAST, CHROMECAST, DLNA, AIRPLAY, etc.. so, the solution i found for me is to replace the internal mirrowing system, which is a mess and totally limited - so: for me is/was: => and now, i only need to find out how i can start this app on firestick also through adb for me, is that a much more better solution without any limitation. |
Beta Was this translation helpful? Give feedback.
@camelcamro ~
Wow! This idea led me down quite a long road of issuing commands to see what happens... Here is what I found:
Unexpectedly, when my FireTV device is in Display Mirroring mode, it stops receiving ADB commands. In fact, it seems that all ADB communication is severed while in that mode. So far I've only tested this with my Fire TV 4 Series (2021) so I'm hoping that other Fire TV devices won't have this same behavior. The only way I was able to restore ADB/Firemote control after entering mirroring mode is to press the back button on my physical remote control.
With that surprising setback of not being able to issue an ADB command to interrogate my TV while it was in Display Mirr…