【Android TV Box】解像度を変更する、Full HD (1920×1080)にする

  • 投稿 : 2019-04-20

T95 Max Android TV Box

たぶん、多くのAndroid TV Boxが該当する気がします。

4K,6Kをうたってるのに、なぜか調べると、1280x720になってます。

設定でみると、1920x1080で出力されてる雰囲気があります。でも、スクリーンキャプチャーを撮ると、1280x720になるのでAndroid TV BOX内では、ハーフHDになってる気がします。

あと、KD Playerのほうの設定は、1280x720以外に設定ができません。

解像度の変更の仕方

参考

Technically this resolution should work, but in any case my preferred solution (and I hope the easier one) is to set the resolution to 1280x1024. I know this works with my raspberry pi already, though I have a similar distortion when trying to set it to 720p resolution.


1.Activate the Android as developer mode on TVBOX, via USB to USB cable execute the following command via command prompt:

adb shell wm size 1920x1080 #To change resolution into FullHD
How can I set a custom screen resolution for my Android TV box? - Android Enthusiasts Stack Exchange

検索で調べると上記を発見しました。この方法を試してみることにしました。

実際にやってみた

adb経由で設定します。

c:\tmp> adb connect 192.168.11.31
c:\tmp> adb shell wm size 1920x1080

1920x1080にする。再起動しても設定は残るようです。

スクリーンキャプチャーを撮ると1920x1080になってるし、かつ、アプリの画面も1920x1080に最適化されてるように思われます。ただし、標準のランチャーは1280x720専用?になってるようです。他のランチャーに切り替えると、1920x1080にも対応できる感じですね。

KD Playerのほうの設定は前と変わらずです

c:\tmp> adb shell wm size reset

元に戻す

c:\tmp> adb shell wm size

現在の解像度を表示する

コピペ用のメモ

adb connect 192.168.11.31

adb shell wm size
adb shell wm size 1920x1080
adb shell wm size 1280x720
adb shell wm size reset

adb shell wm density

adb shell wm density 240
adb shell wm density 160
adb shell wm density reset

KD Player

kodi 18.1のようです。

"KDPLAYER" has replaced Kodi on my box and I can't remove it. : kodi

参考

『adb shell wm size』が多解像度での表示を確認するのに便利だった - Qiita
Androidデバイスでディスプレイ解像度変更 - sashimi4’s diary
【非root】Android端末のレンダリング解像度・DPIを変更する方法 - Wicachi~Windows好きなmicachiの日記~

モニターには、1920x1080

追記:2019/06/01

Anadoid:1280x720
液晶モニター:1920x1080

標準の状態でも、液晶モニター側にはフルHD出力にはなってるようです。

だから、「adb shell wm size 1920x1080」すると、OKな気がします。

スポンサーリンク