[APP][2014.12.08] TVHZ - Nexus Player Themes and Apps

This app allows you to switch the hertz of your display. This is a tool for advanced users, please read this entire description. Hopefully this app will be obsolete sooner rather than later.
If you have a compatible TV or monitor, you may want to view specific content on a different hz. Apps can actually switch the hz used by your device. This feature is new to Android, and thus very few apps support it yet, which is the main reason an app like this one can come in handy.
Unfortunately, at the time of this writing, even if developers added this functionality to their apps (devs: check preferredRefreshRate in WindowManager.LayoutParams), it may not work right or at all. There are several issues with Google's current implementation, as it exists on the Nexus Player, firmware LRX21V:
- The available modes appear to only be detected on Android TV boot. This means your TV or receiver needs to be turned on and switched to the correct input before booting the Android TV device, or not all the modes your TV supports will be recognized.
- Switching hz may break audio. This app provides an option to fix that, but that does require your device to be rooted. Note that this may be both Android TV device as well TV dependent - your setup may not display this issue.
- Switching hz may randomly reboot the device
- The Android API lies. It'll happily report the current refresh rate to be X hz while it is actually Y hz, which may cause timing issues for video apps that actually take refresh rate into account.
- There is no hz override in display settings
So, until these things are fixed Google-side - and it would actually start to make sense for developers to include the functionality in their apps - at least you can play around with this.
Note that 'forcing' a certain hz might be wording it too strong. Android is still free to ignore the setting, and if an app really wanted to, it could override it as well.
Disclaimer: works for me, provided as-is, this app has no support, the situation describe above may change at any time
Why?
I was looking at committing this feature into xbmc/kodi, so I built a quick proof-of-concept app first, as I has not used the API before. During testing I quickly noted that the API doesn't work reliably enough yet to be part of that project.
Download
Google Play (this link is pending Play cache update and Play team approval)

Gonna be a bit off-topic here, sorry about that.
I don't have a Nexus Player, but changing the external display's refresh rate was one of the features I wanted for a long time, it was the last missing thing to have a nice, smooth movie playback experience in an app like xbmc/kodi.
How device-dependent is this app? Can I use it on a N5 for instance? (or a Chromecast?) It has power to pretty much play any video file, it has an 1080p display and can send 1080p through hdmi, so a ~24 hz refresh rate for movies is all that's missing.
It's nice to see Android itself supporting this (even if it currently broken as you say).
What about the external display's modes or the external display's resolution, can they also be changed? The other problem for a good movie experience is with devices not having an exact 1080p display (like the N7 2013). Since the external display is always mirrored (and not extended), the device's 1920*1200 image will be shrunk to the TV's 1920*1080 screen leaving black bars on the sides which really sucks. I've seen some root-required hacks for the N7 2013 to force a standard 1080p resolution, but that's not a real solution... It would be nice to have these sorted out, because until that, even a Raspberry Pi provides a way superior movie-experience than pretty much any Android-powered stuff...

Will this work on the ADT-1?

What about 120Hz TVs?
I dont see 120Hz in the selection is that because of some limitation?

scorpeeon said:
Gonna be a bit off-topic here, sorry about that.
I don't have a Nexus Player, but changing the external display's refresh rate was one of the features I wanted for a long time, it was the last missing thing to have a nice, smooth movie playback experience in an app like xbmc/kodi.
How device-dependent is this app? Can I use it on a N5 for instance? (or a Chromecast?) It has power to pretty much play any video file, it has an 1080p display and can send 1080p through hdmi, so a ~24 hz refresh rate for movies is all that's missing.
It's nice to see Android itself supporting this (even if it currently broken as you say).
What about the external display's modes or the external display's resolution, can they also be changed? The other problem for a good movie experience is with devices not having an exact 1080p display (like the N7 2013). Since the external display is always mirrored (and not extended), the device's 1920*1200 image will be shrunk to the TV's 1920*1080 screen leaving black bars on the sides which really sucks. I've seen some root-required hacks for the N7 2013 to force a standard 1080p resolution, but that's not a real solution... It would be nice to have these sorted out, because until that, even a Raspberry Pi provides a way superior movie-experience than pretty much any Android-powered stuff...
Click to expand...
Click to collapse
First, this app is written only with the main display in mind. As such, it won't work for external displays as it seems you are after. It won't work on an N5 or N7 either as this incarnation of the app only has a TV interface. It won't run on a Chromecast, because that doesn't actually run Android apps. Also, I'm pretty sure the main screens of the N5 and N7 only support 60hz.
That being said, and I have never tried this myself (I really should get a mini-HDMI cable to I can play with this stuff), so take this with a big grain of salt, but from what I've seen and read, the scaling and mirroring you mention is app-based. The Android API does provide mechanisms to display content in the full resolution of the external display (since API 17), but the app requires (potentially a lot of) extra code to do this. The mirroring (and thus auto-scaling) is merely the default thing Android does when an app does not override that behavior. Quickly checking the API docs, it also appears to be possible to adjust the hz of the secondary display in the same way (since API 21). However, again, the currently active app is the one who must control this.
TVHZ uses a trick to get around the restriction of having to be the currently active app. It does not appear this trick can be used the same way to control the hz of an external screen, through the regular API. This does not necessarily mean it isn't possible (without root), it just means more investigation would be required to know for sure.
xamadeix said:
Will this work on the ADT-1?
Click to expand...
Click to collapse
I have not tried.

the_mentor said:
What about 120Hz TVs?
I dont see 120Hz in the selection is that because of some limitation?
Click to expand...
Click to collapse
No. 120hz is display panel refresh rate, not an input refresh rate. Don't worry about it
With stuff like this the rule is pretty much, if you don't know why you would change it and what you would change it to, you're probably best off with the default (unless someone specifically tells you otherwise).

Chainfire said:
First, this app is written only with the main display in mind. As such, it won't work for external displays as it seems you are after. It won't work on an N5 or N7 either as this incarnation of the app only has a TV interface. It won't run on a Chromecast, because that doesn't actually run Android apps. Also, I'm pretty sure the main screens of the N5 and N7 only support 60hz.
That being said, and I have never tried this myself (I really should get a mini-HDMI cable to I can play with this stuff), so take this with a big grain of salt, but from what I've seen and read, the scaling and mirroring you mention is app-based. The Android API does provide mechanisms to display content in the full resolution of the external display (since API 17), but the app requires (potentially a lot of) extra code to do this. The mirroring (and thus auto-scaling) is merely the default thing Android does when an app does not override that behavior. Quickly checking the API docs, it also appears to be possible to adjust the hz of the secondary display in the same way (since API 21). However, again, the currently active app is the one who must control this.
TVHZ uses a trick to get around the restriction of having to be the currently active app. It does not appear this trick can be used the same way to control the hz of an external screen, through the regular API. This does not necessarily mean it isn't possible (without root), it just means more investigation would be required to know for sure.
I have not tried.
Click to expand...
Click to collapse
This is amazing.. Will it work on a ouya do you think?

Chainfire said:
This app allows you to switch the hertz of your display. This is a tool for advanced users, please read this entire description. Hopefully this app will be obsolete sooner rather than later.
If you have a compatible TV or monitor, you may want to view specific content on a different hz. Apps can actually switch the hz used by your device. This feature is new to Android, and thus very few apps support it yet, which is the main reason an app like this one can come in handy.
Unfortunately, at the time of this writing, even if developers added this functionality to their apps (devs: check preferredRefreshRate in WindowManager.LayoutParams), it may not work right or at all. There are several issues with Google's current implementation, as it exists on the Nexus Player, firmware LRX21V:
- The available modes appear to only be detected on Android TV boot. This means your TV or receiver needs to be turned on and switched to the correct input before booting the Android TV device, or not all the modes your TV supports will be recognized.
- Switching hz may break audio. This app provides an option to fix that, but that does require your device to be rooted. Note that this may be both Android TV device as well TV dependent - your setup may not display this issue.
- Switching hz may randomly reboot the device
- The Android API lies. It'll happily report the current refresh rate to be X hz while it is actually Y hz, which may cause timing issues for video apps that actually take refresh rate into account.
- There is no hz override in display settings
So, until these things are fixed Google-side - and it would actually start to make sense for developers to include the functionality in their apps - at least you can play around with this.
Note that 'forcing' a certain hz might be wording it too strong. Android is still free to ignore the setting, and if an app really wanted to, it could override it as well.
Disclaimer: works for me, provided as-is, this app has no support, the situation describe above may change at any time
Why?
I was looking at committing this feature into xbmc/kodi, so I built a quick proof-of-concept app first, as I has not used the API before. During testing I quickly noted that the API doesn't work reliably enough yet to be part of that project.
Download
Google Play (this link is pending Play cache update and Play team approval)
Click to expand...
Click to collapse
Good job man, thanks for developing for the nexus player

Absolutely awesome!
Hopefully this will work for the Amazon Fire TV in the future too!

Chainfire said:
I was looking at committing this feature into xbmc/kodi, so I built a quick proof-of-concept app first, as I has not used the API before. During testing I quickly noted that the API doesn't work reliably enough yet to be part of that project.
Click to expand...
Click to collapse
FYI, I've also dabbled with refresh rate switching with Kodi, very WIP code (i.e. full of commented trial-and-error code ) is at https://github.com/anssih/xbmc/commits/android/refreshrate_wip (2 commits).
I also noticed the audio breaking (haven't investigated further yet), but I didn't see any reboots occurring.
If I remember correctly, this did not work on ADT-1 last I tested.

dsfdfsdfs said:
FYI, I've also dabbled with refresh rate switching with Kodi, very WIP code (i.e. full of commented trial-and-error code ) is at https://github.com/anssih/xbmc/commits/android/refreshrate_wip (2 commits).
I also noticed the audio breaking (haven't investigated further yet), but I didn't see any reboots occurring.
If I remember correctly, this did not work on ADT-1 last I tested.
Click to expand...
Click to collapse
The audio breakage occurs in device-specific code, so it may not happen on different devices. On the other hand, it may have been an oversight in the Android framework itself that many TVs will disconnect the audio channel as well when switching hz's - in essence completely severing the connection and building it up again.
Fixing the audio can be done by manually killing /system/bin/mediaserver (it is automatically restarted after a few seconds), or calling "stop media && start media". As a side effect this may actually crash apps using audio (or video) at that time, so actually doing this at the start of a video is not really an option - even if it didn't require root and wasn't device-specific.
The reboot is rare, but I've switched hz's a couple of hundred times now, and it does happen.
Glad to see someone else is looking at this though, if you put it in Kodi (when it actually works) that means I won't have to

Chainfire said:
The audio breakage occurs in device-specific code, so it may not happen on different devices. On the other hand, it may have been an oversight in the Android framework itself that many TVs will disconnect the audio channel as well when switching hz's - in essence completely severing the connection and building it up again.
Click to expand...
Click to collapse
Sorry, by "not working on ADT-1" I meant that the refresh rate switching wasn't working there.
Anyway, the HDMI audio stuff is one-way communication (except for EDID, which can't be "disconnected" in that sense), so there is no "disconnecting the audio channel" from the TV side.
Chainfire said:
Fixing the audio can be done by manually killing /system/bin/mediaserver (it is automatically restarted after a few seconds), or calling "stop media && start media". As a side effect this may actually crash apps using audio (or video) at that time, so actually doing this at the start of a video is not really an option - even if it didn't require root and wasn't device-specific.
The reboot is rare, but I've switched hz's a couple of hundred times now, and it does happen.
Glad to see someone else is looking at this though, if you put it in Kodi (when it actually works) that means I won't have to
Click to expand...
Click to collapse
Argh, and I was thinking the opposite here But yeah, I'll work on it as long as time permits.
Have you reported the audio/reboot issues to Google yet?

dsfdfsdfs said:
Sorry, by "not working on ADT-1" I meant that the refresh rate switching wasn't working there.
Click to expand...
Click to collapse
I wasn't implying it might work on any specific device, just that at least the log spam from the audio issue come from a fugu-specific driver, a different driver may behave differently, or not if it's really a framework issue. Anyway, we're knee-deep in speculation here, it matters not.
Anyway, the HDMI audio stuff is one-way communication (except for EDID, which can't be "disconnected" in that sense), so there is no "disconnecting the audio channel" from the TV side.
Click to expand...
Click to collapse
I'll admit I know nothing about these things, but if the TV cuts all power to the port, wouldn't the device 'sense' that and possibly interpret that as a disconnect?
Argh, and I was thinking the opposite here But yeah, I'll work on it as long as time permits.
Click to expand...
Click to collapse
Maybe my test videos weren't great, but I didn't think things looked noticably better at 24hz than they did at 60hz. Though admittedly that may be related to the renderer not actually knowing the display is at 24hz. It was more of an experiment for me than that I truly need it - I have some other issues to figure out with my NP that have higher priority.
Have you reported the audio/reboot issues to Google yet?
Click to expand...
Click to collapse
Nope, because I have not had the time (or will) to produce a decent error report yet.

Chainfire said:
I'll admit I know nothing about these things, but if the TV cuts all power to the port, wouldn't the device 'sense' that and possibly interpret that as a disconnect?
Click to expand...
Click to collapse
Yeah, though I'd be somewhat surprised if that happens - if the source device sees a disconnect/reconnect, it may consider the to be a "new device" and do all sorts of enumeration... but anyway, as you said, pointless to speculate really
Chainfire said:
Maybe my test videos weren't great, but I didn't think things looked noticably better at 24hz than they did at 60hz. Though admittedly that may be related to the renderer not actually knowing the display is at 24hz. It was more of an experiment for me than that I truly need it - I have some other issues to figure out with my NP that have higher priority.
Click to expand...
Click to collapse
Yeah, I too have a hard time seeing the 24/60Hz difference with most videos - not immediately sure if renderer thinking it was 60Hz could cause visible issues, though. With 25/50p European TV footage the 50/60Hz difference is more pronounced.
Chainfire said:
Nope, because I have not had the time (or will) to produce a decent error report yet.
Click to expand...
Click to collapse
OK. I'll probably make one after I've had the time to gather some more data/info.

Update?
Can anyone update me on the current status of frame rate switching for android tv, specifically within Kodi? I'm hoping by the time the Shield console comes out I will be able to playback movies at 24hz.

anyone? I've searched around and haven't been able to find if this has been officially implemented in any apps.

Chainfire said:
This app allows you to switch the hertz of your display.
Click to expand...
Click to collapse
Will your tool conflict with modes that are built in to integrated Android TVs, such as the forthcoming Sonys?

please get 24hz working on the Shield Tv

This is now finally implemented in Kodi (version 15.0 Beta 2, on Google Play, formerly XBMC). It works in at least Nexus Player and Shield TV, but should work in any Android system that supports refresh rate switching. You need to enable automatic refresh rate switching in the Kodi video settings.
I wrote the support back in December, but the problems mentioned in this thread prevented putting it in officially until now. Those issues seem to have been resolved in the Android versions released since then.

Works, somehow
The app does it job, although it seems to reset to 60Hz at reboot (even with the option set to keep at reboot).
Now, I agree, Google should set the output Hz to match the video stream at hand. Yes, it will be a short blackout, but so what!?.
Thanks for the app. I'm running it on the latest 6.0 available today.

Related

Splashtop HD Updated

It looks like they finally fixed the issues with Splashtop HD and the 10.1. I want to know if anyone is using it and if so, how is it so far? I'm very close to buying it, but want to know for sure that it is working.
Splashtop Remote Desktop HD
"...** Validated for Samsung Galaxy Tab 10.1, Asus Transformer, Motorola Xoom, Acer
Iconia Tab A500, Acer Picasso, LG G-Slate, and others **"
I saw that in the market this morning. I'm curious if when you access your PC, if it does like other remote desktop type apps and actually shows on my screen at home when I'm away. I'd have to remember to turn my display off, but leave my cpu on if that is the case I assume.
I have it. works fine. I see almost no difference between it and the non-hd version though. hopefully they add all the features they have on the ipad soon.
Does it take up the full tab screen? Does it still change the resolution on the pc?
Has to be some reason for hd version.
smaskell said:
I have it. works fine. I see almost no difference between it and the non-hd version though. hopefully they add all the features they have on the ipad soon.
Click to expand...
Click to collapse
So it doesn't support higher resolutions? I'm trying to decide between this one and Remote Desktop Client. It has great reviews.
I own it. It has the option to scale the screen to match the tab, or set it to 1280x720 to fit the tab. Works great, provided the computer is both on and logged in.
Unfortunately, on headless servers the software is useless because the client software requires a user to bbe logged in and active. When an RDP session ends, the software shuts down automatically and prevents login through Splashtop.
cekle said:
When an RDP session ends, the software shuts down automatically and prevents login through Splashtop.
Click to expand...
Click to collapse
I have a similar setup where that issue affects me. I also wish it could zoom if you did want to use a higher resolution.
It is very fast, you could watch a movie from local network fine but with a little bit of delay.
ericc191 said:
So it doesn't support higher resolutions? I'm trying to decide between this one and Remote Desktop Client. It has great reviews.
Click to expand...
Click to collapse
yes, it does support higher resolutions.
The resolutions are
800 x 600
1024 x 768
1280 x 720
Best fit to this device
Native of the computer
So basically it does any resolution if you choose native of the computer.
Is there anyway to zoom using this version?
njfoses said:
Is there anyway to zoom using this version?
Click to expand...
Click to collapse
Good question - adding mine - any way to get it to rotate 180degs?
xnappo
Any recommendations for this app? I've been using VLC for the past while, is this better?
I use this type of app numerous times a day to get info off my companies servers as well as use our company data software.
I have used this for the past 5hrs and im impressed so far. Works well. Maybe a little lag once in a while...but im assuming that's from spotty 3g service (tethered to phone).
I got this app yesterday so I could stream live TV from windows media center on my desktop. The video was surprisingly smooth. I would say it ran pretty close to 30 fps with some fps hiccups from time to time. The audio was great as well.
I haven't tried using VLC but if you're looking to watch other things than video files, this app works great. Other remote desktop apps come nowhere close to the video and audio performance of this one.
Ever tried 2X ?
Dc5e said:
I got this app yesterday so I could stream live TV from windows media center on my desktop. The video was surprisingly smooth. I would say it ran pretty close to 30 fps with some fps hiccups from time to time. The audio was great as well.
I haven't tried using VLC but if you're looking to watch other things than video files, this app works great. Other remote desktop apps come nowhere close to the video and audio performance of this one.
Click to expand...
Click to collapse
What makes this better than free one like 2X ? Really would like to know.
Also I found a hack that lets windows home edition work like a terminal server which is saweet!
Even lets you connect console and have more than two users just like terminal server.
EDIT: ah I see now 2x won't play video over rdp... Window is black in player
Splashtop doesn't use traditional remote desktop protocol, it uses its own streamer that you install on the computer/server. I've never seen regular remote desktop or vnc server/client stream this well, especially with videos.
I have no experience with 2x but no video or black video window on client/secondary monitor is usually due overlay issues. Try changing video player setting away from overlay.
What kind of upstream connection do you guys have? Splashtop HD works amazingly well on my local network, but once I try using remotely I find it's performance leaves something to be desired. It works OK, but is generally slow and I wouldn't even think of doing any audio or video with it. My upstream is capped to around 100 kb/s or maybe a little higher, so I suspect that may be the issue.
Does anybody know of a solution that works better with such bandwidth constraints. I'd like to be able to remote in on my tablet and from my computer at work.
Splashtop is great on a LAN, but not as good over the internet. My cable (comcast blast) upload is ~3.7 Mbps at home, and the DSL download at work is 3 Mbps. And even then watching videos is not good. The audio portion is fine, the video portion is about 3 frames per second and less.
For watching video over the internet, Plex or Playon should be better. With Plex, you can adjust for your bandwidth. I think Playon detects your upload and adjust accordingly.
I couldn't get Plex to detect my server over the internet to test on my Gtab 10.1, works on a regular computer browser so it's not a firewall issue. Playon works fine for streaming. But I suspect your 100kbps could be problematic.
So between LogMeIn Ignition, 2X, Remote Desktop Client, and Remote RDP, which do you all recommend?
I plan to use it for repairing/diagnosing software issues from my house instead of having people bring me their computers.
I'm (generally) not that interested in watching video via remote desktop of any sort. It would be nice if I could use spotify from work sometimes though. Mostly I just want to have access to my appications (not to mention unrestricted internet access) on my home computer.

[Q] Telechips TCC8920 CX1 stick and hulu + problem

(running 4.0.4)
Hi, skip to the next paragraph if you only want to hear about the hulu problem. I broke down and tried another Chinese off brand android device due to the price (under $40 with shipping) and I'm actually pretty happy this time. This is the best one yet. Had a couple minor things but I was able to fix them (annoying keyboard overlay kept coming up even with an external kb so I killed the process, then it did the same with voice rec typing so I disabled that process too)... flash was clunky but I was able update it, in the market no less, and it was better. I'll finish the mini review with netflix works well.
But, finally, to the problem. Hulu plus goes sideways once the first set of commercials tries to run after the video starts (re: the commercial/s before the show are ok). It tries to run the commercials at the same time as the next segment of the show. Looks sort of like two separate windows with the commercials on top. Waiting out the commercials does not work / the overlay wont go away. I'll add; the hulu video quality looks great. Much better than my older single core a9 device which seems to have a low frame rate. Also; I'm not trying to block the commercials and I can't find any ad blocker software on my device.
Any ideas? This would be a pretty cool device if Hulu worked on it (read my kindle books on my big tv, surf the web, keep and eye on my email, supports all the meeting software apps and has a good Citrix VM client piece...).
PS
HBO Go also works but video quality is bad. I think it is on HBO's side. They probably have the resolution set low for phones and pads; not high enough for a larger TV.... They just gave in on HDMI video so maybe they'll fix this soon...
thanks
Well; didn't seem to be ad blocking related in the end. I switched to Hulu 2.6.2 and it is working. Down side is screen refresh seems slower than the current version... but it works.

[Q] Android as a desktop operating system

I was thinking of the coolness factor of just having one device, a phone, to which you could connect an external display and have an extended desktop. I am not finding any reference to this on Android (only the MS Surface). From what I have been reading, and remember/understand (may be confused), Jelly Bean brought the ability for windowing apps. However, the apps have to be coded for the capability, unless you root your phone and installed an app that provided windowing for all apps. Also, I have not heard of the possibility of having an extended desktop in Android.
I would like to ask WHY? Why not have windowing and the ability for an extended desktop, on an external display? A bluetooth keyboard and mouse just follows. Does google have to play nice with the manufacturers that stand to loose from people only needing one device? Is there a reason I'm not thinking of? Most phones are fast enough for this these days.
At the turn of the century, I was running GPS software Deluo Routis on a Sony Vaio 505 Pentium 200Mhz laptop running Win98. The 2-D graphics were smooth even while playing mp3's through the car speakers. The mapping software showed the map clearly, and effectively gave me navigation. People have lost sight of how much you can do if you give up the bloat and bling.
Also, I am pretty confused with the merging of Android and Chrome. I never liked Java to begin with; my experience with it is in MS Windows, and it runs slow as molasses. I believe my phone would run much faster if they had not chosen Java. I understand this to be because you have an operating system running on top of another operating system. It just makes more sense to me to have less layers and run apps natively, for better performance. I thought maybe they chose Java for its level of security. Is the screening process for Google Play not foolproof enough?
I like the philosophy of Google better than Microsoft**, so if one of them is going to win, I hope it's Google. I'm hoping Google won't end up with a convoluted Android/Chrome operating system because Lawyers forced them to (the idea I get based on the latest news). I don't understand: do they want to keep their OS architecture simple, but are being forced to make the OS complex for different reasons?
**Apple doesn't even want to compete. They have never wanted to dominate, just make huge profits. Unless they break up the marriage of hardware and software, they won't win. Then again, if Samsung keeps dominating, there may not be much hardware diversity?
Oh, and my main question was: "Why not have windowing and the ability for an extended desktop?". Wouldn't that be a big deciding factor for anyone that wanted to simplify and just have one device?
Anybody? Tell me I'm crazy at least. There has to be a strategic reason, that Google does not introduce full windowing and extended desktop support.
Its coming eventually. though you could do it right now. Motorola tried something like this with their atrix lapdocks.
Sent from my Samsung i437p using Tapatalk and CM 10.2
E_Phather said:
Its coming eventually. though you could do it right now. Motorola tried something like this with their atrix lapdocks.
Click to expand...
Click to collapse
Can you do it right now with any android device having a video port?
Well lets look at how we could achieve this with todays technology.
Input:
Bluetooth Mouse & keyboard.
Output:
Wireless display with support for older displays using something like Chromecast.
Graphical User Interface:
A secondary Launcher/Application (Which could potentially see companies like MS & Canonical developing their own UI's and Charging for them if required).
Home & Office use with one device:
Home would be the default UI, but when your device has used NFC to log into the office it would automatically enable your Office profile/UI for a certain length of time (requiring you to log back in after a set time or manual log out via another NFC tap).
This would be very useful as it would enable you to take your "desktop" environment anywhere with you and connect to any HDTV with Wireless display/Chromecast support.
Applications:
So if like me you are finding your phone to become ever more a better solution to your digital needs and you only require your desktop for apps which work better with larger displays (Videos & certain games) you will find this very useful.
Games:
Now games could become ever more better as they could be controlled using standardised control inputs (game controllers could use standardised input methods allowing you to select any compatible controller to best suit your needs) or even a driving game could allow you to see the game on a HDTV yet be controlled with the accelerometer for steering and the right of the devices touch display would be the accelerator and the left of the display would be the brakes for example.
More Business Solutions:
If you could wirelessly connect to the office display then show a powerpoint style presentation that would be great because the very device which stores the file would also be your controller to move to the next/pevious slides.
Media:
Music could possibly be stored in the cloud so when your on the move you can listen to your music as many of us do now, but when connected to a large display it could utilise the large display and speakers to show a music video too!.
Photos could be viewed on the large screen and the next one to be displayed could be select on the device (allowing the use to avoid showing anyone pictures which they don't want other to see - ie: pitcures of you and your friends whilst your parents/grandparents are in the room...).
The TV Guide:
The TV Guide would become a very interactive thing which allows you to see what is available on other TV channels without other people in the room being limited to viewing the content they are trying to watch in a small box in the corner of the display...
These are just some ideas of what is possible, but I know that you could do so much more with this and with 64-bit technology coming to many mobile devices soon that will make it so much easier for devices to process all of this data at once without any serious lag!.
I would love to see a group of developers on XDA team up on an open desktop (secondary) launcher to run alongside the users primary (phone) launcher. if there was a project like this with an open framework to develop apps for I'd be happy to start developing apps for that or separate UI's to run alongside my current (Phone/Android) apps UI's.
Edit:
Also remember that this could be utilised in other ways too eg:: connecting your device to your car and your device could deliver your navigation & music to your vehicles display whilst getting important traffic/weather news using your devices network connection!.
Isn't this exactly what the Ubuntu phone intends to do or have I got the wrong idea?
-----------------------------------------------------
Sign up for COPY with this link, and we'll both get 5 GB of free cloud storage in addition to the usual 15 GB: https://copy.com?r=m3arsR
Free GiffGaff SIM with £5 credit: http://redir.info.giffgaff.com/r/?id=h4d8d850,c0e1337,c0e139c&p1=d3xp2pc
Sent from my Galaxy Nexus using XDA Premium 4 mobile app
Yes, but with Android already having a large ecosystem it would make a lot of sense to build upon that.
Chromecast is not "open" to third party apps. http://www.minyanville.com/sectors/...eeds-to-Tread-Lightly-With/8/28/2013/id/51502
Do they have a displayport version of Chromecast? *cough*
quote from: http://www.tested.com/tech/set-top-boxes/457036-testing-google-chromecast/
"Chromecast is also not a particularly good desktop mirroring option, either. It actually can't do full desktop mirroring, and instead works solely with the Chrome browser. In beta right now is Chrome tab streaming, which sends to Chromecast everything that can be rendered in a single Chrome tab, including web pages, flash embeds, and even full-screen MKV video files if you have VLC installed. I like that Chrome tab streaming works independently of what's showing on your laptop or desktop's screen--like with YouTube and Netflix, you can multi-task and switch to other tabs or windows while one tab is being streamed. The only thing that matters is the window size and screen resolution. Chromecast will automatically scale the aspect ratio of your window to fill up your TV screen, adding black bars on the sides to avoid stretching. A full-screen resolution of 1440x900 looked good on a large 1080p TV, but streaming from a 2560x1600 monitor at full-screen made the text unreadable on my 70" TV."
Wow... I thought only displayport was capable of 2560x1600 (edit: hdmi v1.3 brought this). Even if I hook it up to my 2560x1600 monitor, it won't really display anything but entertainment. Chromecast doesn't seem to be a way to have a monitor, to use your Android phone as a PC replacement.
AllCast !!!
http://www.geek.com/android/chromecast-reject-becomes-allcast-public-beta-now-available-1578674/
However, I still need to add some kind of wifi enabled device to my 30" lcd monitor (like with chromecast). Really, I don't mind a cable connection from my phone to my monitor, if that was an option. If Google continues to be closed like this, then I would go for Ubuntu phone.
Displayport:
http://en.wikipedia.org/wiki/MyDP#SlimPort
Any phones have this besides the Google Nexus 4? Actually, I'm not getting a new phone until I know what the hell will happen with Android / Chrome OS
Quote from: http://www.tested.com/tech/android/457205-mhl-vs-slimport/
"SlimPort's support for the DisplayPort standard--specifically Mobility DisplayPort--means it can output video at the same 4K resolution as MHL, though not via HDMI (yet, anyway). And here SlimPort hasn't really made good on its potential, yet; though it's based on the flexible DisplayPort standard, the only SlimPort adapters currently available are for VGA and HDMI connectors. The upshot is that you won't be plugging a Nexus 7 into a 1440p DisplayPort computer monitor anytime soon." http://www.slimportconnect.com/
Chromecast May Get Screen Mirroring With Android 4.4.1
Evidence in Android 4.4.1 indicates that screen mirroring is coming to Chromecast.
Click to expand...
Click to collapse
http://www.tomshardware.com/news/chromecast-google-screen-mirroring-kitkat-android,25345.html
It could start with mirroring a primary display, but gradually result in mirroring something that a GPU has rendered for a secondary display.
A dock from Samsung Galaxy phones. Has USB ports, HDMI, and audio.
http://www.samsung.com/us/mobile/cell-phones-accessories/EDD-S20JWEGSTA
mraeryceos said:
A dock from Samsung Galaxy phones. Has USB ports, HDMI, and audio.
http://www.samsung.com/us/mobile/cell-phones-accessories/EDD-S20JWEGSTA
Click to expand...
Click to collapse
I tried that myself with my previous Galaxy S4 (i9500), It was a great dock and when I connected my wireless KB & Mouse USB dongle & connected the HDMI to my PC monitor it was a good experience when doing things like playing GTA3 on the bigger screen (it was better than the windows version in some ways).
But the device just needed a separate home screen UI to be output to the PC screen to look perfect and to work better with the KB & Mouse input type.
It shouldn't be too difficult to make a UI that simply changes the size of some buttons to a smaller size, enabling more widgets to fit on the home screen and if they could simply force the apps to run in either windowed or full screen that would enable better multi-tasking, then the browsers would just need a small update to detect if the device is running in Desktop Mode if so, then simply zoom out of the page a little to emulate the desktop browser experience.
Just a few ideas... If Google's Android team are reading this, I would recommend that you get that dock to experiment with for future Android builds.
Especially now that OS' like Ubuntu Phone are looking at going down this road of the one device fits all computational needs.
Rather than creating a new thread I thought that it would appropriate to bring this topic back up after the recent announcements that several OEM's have made, that they will be releasing desktops with Android as their Primary/Secondary OS.
I hope that this pushes Google into creating a dedicated desktop UI in the future.

How does Superscreen work?

Hi guys... I am new to this forum and therefore couldn't post to the developer forum, even though I am one.
There is this Kickstarter campaing "Superscreen" which promises to give you a low-cost, tablet-like device, which streams your phones display to the 10" "Superscreen". They make several interesting claims on their FAQ section:
- the devices uses no mirroring... they seem to use their own streamingprotocol from within an app, you have to install on your phone (no Chromecast or something like that involved).
- the stream displayed on the tablet part is not bound to the phones resolution! So they claim that a 4k video on a 1080p phone will be displayed as 2k on the tablet (which is 2k) (and I understand that they do not use upscaling)
- you can actually use your phone to do different things than the tablet is doing (so it isn't just streaming)... they call it "dual screen" or something like that
- less interesting, just FYI: The seem to establish a wifi-direct connection between phone and superscreen
Now I am wondering how is that possible and which APIs the Superscreen app is using (they claim it all works on Android 4)?
- I can't find anything in the Android API to grab the whole screen content and to stream it (except for chromecast maybe, which these guys don't use)
- How can the "Superscreen App" convince another video player app and the Android system to render at a different resolution then the phone's?
- How can they render apps offscreen to enable this dual screen thing?
I would love to hear your ideas, as I have no clue how they do it without any rooting and on Android 4...
EDIT: I watched some youtube videos about the product and (while it still may be a prototype) 1) regular apps definetely seem to be upscaled (opposed to what the Kickstarter claims specifically for videos) and 2) there is considerable lag it seems, not suprisingly...

Question Miracast

Seems have last been here. Recently I picked up a pixel 6. I'm thinking it had all the functionality I need. Long story short. Went to a meeting and try to cast information to the screens and lo and behold. I needed a Google Chromecast dongle. My previous phone's all had miracasts. Is there a way to install Miracast on a pixel 6? I did look through the forums. I couldn't find anything specifically speaking to this
seanpixel6 said:
Seems have last been here. Recently I picked up a pixel 6. I'm thinking it had all the functionality I need. Long story short. Went to a meeting and try to cast information to the screens and lo and behold. I needed a Google Chromecast dongle. My previous phone's all had miracasts. Is there a way to install Miracast on a pixel 6? I did look through the forums. I couldn't find anything specifically speaking to this
Click to expand...
Click to collapse
Is there a reason why the Miracast app won't work for you?
V0latyle said:
Is there a reason why the Miracast app won't work for you
Click to expand...
Click to collapse
If you typed a response, it didn't post.
Miracast Wifi Display
It's not installed on the pixel
Mirrorcast and others, like Easycast are apps available in Playstore. There are others as well. Here's some helpful info:
Project your Pixel phone's screen - Pixel Phone Help
If you have a Chromecast or other device that casts, you can mirror your Pixel phone's screen and audio on
support.google.com
seanpixel6 said:
It's not installed on the pixel
Click to expand...
Click to collapse
I'd like to have it too.
I just moved to a pixel as my old phone was too old and apps wouldn't support it anymore, but in that one miracast just works. It's total BS that a phone that costs 450-800 euros (depending upon the exact model) just cannot connect to any tv with a standard connection protocol.
I discovered AirBeamTv apps which provide screen casting support but they're quite slow and need an app on both tv and device which is not the best solution and not every smart-tv brand is covered.
TxMNSTR said:
I'd like to have it too.
I just moved to a pixel as my old phone was too old and apps wouldn't support it anymore, but in that one miracast just works. It's total BS that a phone that costs 450-800 euros (depending upon the exact model) just cannot connect to any tv with a standard connection protocol.
I discovered AirBeamTv apps which provide screen casting support but they're quite slow and need an app on both tv and device which is not the best solution and not every smart-tv brand is covered.
Click to expand...
Click to collapse
It depends on what type of content you want to mirror. If it's DMCA protected content, then you might need a dongle plug in, like Fire Stick, Roku, or other. I use fire Stick, for my Amazon prime videos content, which I then add apps like Hulu to it. Now, since I don't have home WiFi, I use my hotspot for internet connection, for Fire Stick, which is a part of my carrier unlimited plan. Now, if you are only interested in mirroring non-DMCA content, like your own pictures, videos, or browser screen? Then you might need a different dongle. I bought a cheep mirrorcast dongle online, which worked just fine for non-DMCA content.
To my knowledge, Miracast support was dropped out of Android from 6.0 onwards, but most other (not Google) manufacturers have it baked in as one form or another in their ROMs still. Google however does not support any form of Miracast on any of their first party phones, only Google Cast (which I think is Chromecast basically but don't quote me on that), which is proprietary and not compatible with Miracast.
I have tried on a Pixel 3a, 3a XL and a 6 but neither one works with Miracast on stock android.
I've read, more than once, that scrcopy is good...and free! Not tried it yet myself...smh
GitHub - Genymobile/scrcpy: Display and control your Android device
Display and control your Android device. Contribute to Genymobile/scrcpy development by creating an account on GitHub.
github.com
Zaxx32 said:
I've read, more than once, that scrcopy is good...and free! Not tried it yet myself...smh
GitHub - Genymobile/scrcpy: Display and control your Android device
Display and control your Android device. Contribute to Genymobile/scrcpy development by creating an account on GitHub.
github.com
Click to expand...
Click to collapse
Can confirm it's good and it's free and it does what it says. It does need some additional setup and relies on adb so I don't think it'd work for something like a TV.

Categories

Resources