GTS

 

  GTS的全称是Google Mobile Services Test Suite,所谓的Google Mobile Services即谷歌移动服务,是谷歌开发并推动Android的动力,也是Android系统的灵魂所在。GMS目前提供有Search、Search by Voice、Gmail、Contact Sync、Calendar Sync、Talk、Maps、Street View、YouTube、Android Market (ICS 上更改为Play store)服务。当用户使用谷歌的时候,谷歌可以把广告嵌入各种谷歌的服务中。

依据GMS,谷歌对android手机给予不同程度的授权,把搭载Android系统的手机厂商分为三个级别

  1. 免费使用Android操作系统,但不内嵌GMS。

  2. 内嵌部分GMS,但手机不能打上谷歌的商标。

  3. 内嵌所有的GMS服务,也可以使用谷歌商标。如果在android手机中内置有谷歌GMS服务的话,是等同被谷歌官方认证过的产品。

1.GTS:Google Mobile Services Test Suite

2.CTS:Compatibility Test Suite

 

GTS测试中有关media的测项需要的网络才可以pass,因为要访问Google 服务器,有如下测试注意事项
 
 
[SOLUTION]
1. Please use user load to run GTS.
2. GMS is required 
3. Connect device to PC and make sure the USB connection is firm and stable.
you need to enable setting "Developer options -> USB debugging";
and we recommend to also enable "Developer options -> Stay awake"
4. Check the IMEI serial number of device. make sure it's valid.
5. The network should fast enough (prefer wifi) and can access Google's server: a VPN may be used under restricted network environment.
the minimun requirement of bandwidth are: 1Mbps - 480p, 2~3Mbps - 720p(HD)
6. Reboot the PC and device (un-plug battery) to have a clean test run.
7.Make sure the phone has more than 1G avilable space to restore the downloaded videos,files.
8.GTS will take screenshots & reboot the device if needed. Make sure to remove all user intervention required settings, e.g.
   i.  SIM PIN lock
   ii.  Screen lock
   iii.  Display > Sleep > 10minutes
   iv. Security > verify apps on 4.2+ devices

下部分转载

http://blog.csdn.net/lorryhou/article/details/11796237

 

      GTS Test Step  

  1. 前提:  
  2. 需要连接WiFi,并设置VPN账户,因为测试期间需要下载视频并进行播放,VPN可能不稳定,不要气馁,多试几次,心中默念几句“南无阿弥陀佛”,肯定可以的,嘿嘿...  
  3.   
  4. 步骤:  
  5. 1. 启动控制台,可以使用sudo chmod 777 xts-tradefed赋权限,以后就不用每次都使用管理员权限执行  
  6. ckt@ckt-desktop:~/cts/android-xts/tools$ sudo ./xts-tradefed   
  7. Android GTS 1.3.3  
  8. xts-tf >   
  9.   
  10. 2. 开始测试,手机连接上ubuntu之后,查看右下角图标,确认手机已经连接上虚拟机,不行可以重启手机或者拔插usb多试几次;连上虚拟机之后会出现如下信息:  
  11. 09-13 14:37:12 I/: Detected new device AY997SDERK4SVKFQ  
  12. 输入如下命令启动测试:  
  13. xts-tf > run xts --plan XTS  
  14. 如要测试某个包 如:google.afw
  15. xts-tf > run xts --p google.afw
  16. 测试命令帮助:
  17. xts-tf > run xts --help
  18.  

  19. 09-13 14:38:53 I/TestInvocation: Starting invocation for 'xts' on build '1.3.3' on device AY997SDERK4SVKFQ  
  20. 09-13 14:38:53 I/AY997SDERK4SVKFQ: Created result dir 2013.09.13_14.38.53  
  21. xts-tf >   
  22.   
  23. --Created result dir xxxx.xx.xx 表示创建测试结果成功;  
  24.   
  25. 3. 查看结果  
  26. Session  Pass  Fail  Not Executed  Start time           Plan name  Device serial(s)    
  27. 0        31    0     14            2013.09.13_14.38.53  XTS        AY997SDERK4SVKFQ    
  28. 09-13 16:17:12 I/: Detected new device AY997SDERK4SVKFQ  
  29. xts-tf > run xts --continue-session 0  
  30. 09-13 16:17:21 I/TestInvocation: Starting invocation for 'xts' on build '1.3.3' on device AY997SDERK4SVKFQ  
  31.   
  32. ...... 测试中......  
  33.   
  34. 09-13 16:55:13 I/AY997SDERK4SVKFQ: Saved log device_logcat_1080357836705434293.zip  
  35. 09-13 16:55:13 I/AY997SDERK4SVKFQ: Saved log host_log_8924128741063465900.zip  
  36. 09-13 16:55:13 I/AY997SDERK4SVKFQ: google.media package complete: Passed 17, Failed 7, Not Executed 0  
  37. 09-13 16:55:13 I/AY997SDERK4SVKFQ: Created xml report file at file:///home/ckt/cts/android-xts/tools/./../../android-xts/repository/results/2013.09.13_14.38.53/xtsTestResult.xml  
  38. 09-13 16:55:13 I/AY997SDERK4SVKFQ: XML test result file generated at 2013.09.13_14.38.53. Passed 38, Failed 7, Not Executed 0  
  39. 09-13 16:55:13 I/AY997SDERK4SVKFQ: Time: 37m 51s  
  40.   
  41. --看到如上信息表示已经完成测试,如果有Failed项或者Not Executed项,则要继续循环测试  
  42.   
  43. 4. 循环测试:  
  44. 编辑xtsTestResult.xml,需要管理员权限才能编辑,可如下操作:  
  45. sudo gedit xtsTestResult.xml  
  46. 查找到如下行:  
  47. <Summary failed="17" notExecuted="0" timeout="0" pass="28" />  
  48.   
  49. 修改为:  
  50. <Summary failed="0" notExecuted="17" timeout="0" pass="28" />  
  51.   
  52. 使用 l r查看测试结果如下:  
  53. xts-tf > l r  
  54. Session  Pass  Fail  Not Executed  Start time           Plan name  Device serial(s)    
  55. 0        28    0     17             2013.09.13_14.38.53  XTS        AY997SDERK4SVKFQ    
  56.   
  57. 继续测试,输入如下命令(0表示session id,根据自己需要修改):  
  58. xts-tf > run xts --continue-session 0  
  59. 09-13 17:01:22 I/TestInvocation: Starting invocation for 'xts' on build '1.3.3' on device AY997SDERK4SVKFQ  
  60. 09-13 17:01:25 I/AY997SDERK4SVKFQ: Collecting device info  
  61.   
  62. ......  
  63.   
  64. 09-13 17:18:17 I/AY997SDERK4SVKFQ: Saved log device_logcat_5424763247133008176.zip  
  65. 09-13 17:18:17 I/AY997SDERK4SVKFQ: Saved log host_log_5388513371929216598.zip  
  66. 09-13 17:18:17 I/AY997SDERK4SVKFQ: google.media package complete: Passed 24, Failed 0, Not Executed 0  
  67. 09-13 17:18:17 I/AY997SDERK4SVKFQ: Created xml report file at file:///home/ckt/cts/android-xts/tools/./../../android-xts/repository/results/2013.09.13_14.38.53/xtsTestResult.xml  
  68. 09-13 17:18:17 I/AY997SDERK4SVKFQ: XML test result file generated at 2013.09.13_14.38.53. Passed 45, Failed 0, Not Executed 0  
  69. 09-13 17:18:17 I/AY997SDERK4SVKFQ: Time: 16m 54s  
  70.   
  71. 如还有Failed项或者Not Executed项,则反复测试,至所有项Passed即可,如软件有问题,需要解决问题之后继续测试至全部项通过;  
  72.   
  73. 所有项都Passed之后,Failed 0, Not Executed 0, 即表示完成测试,恭喜你,只需要存档2013.09.13_14.38.53.zip报告即可。  
  74.   
  75.   
  76.   
  77. 三、ctsVerifier Test Step  
  78. 前提:  
  79. 1. Flash Tools烧最新user版软件;  
  80. 2. 安装CtsVerifier.apk  
  81. 3. 有部分测试项需要两台手机同时对测,另外一台手机只需安装CtsVerifier.apk,其他不做要求;  
  82.   
  83. 开始测试:  
  84. 1. 依次选择每一项测试,当Pass按钮Enable时,即点击Pass,此项会变成绿色,则便是通过测试;  
  85.   
  86. 注意:  
  87. 1. 有GPS测试,需要打开GPS选项,连上WiFi并拿到窗台测试(便于接收GPS信号);  
  88. 2. WiFi对测的项需要反复测试,测试Request的时候,另外一台手机的Response项要先打开;  
  89. 3. 建议设置手机Sleep为最长时间,避免因手机黑屏之后无法测试WiFi直连;  
  90.   
  91. 完成测试:  
  92. 所有项都完成之后,则按菜单键,选择“Export”导出测试报告到SD卡,导出拷贝给测试人员即可


google文档

 
Google Mobile Services Test Suite (GTS)
 
Version 1.0 (April 23, 2012)
 
Contents:
Introduction
GTS Overview
Test Setup and Workflow
Setting up and using the GTS
FAQ
 
 
Copyright © 2012, Google Inc. All rights reserved. 
 
Introduction
Google Mobile Services (GMS) is a collection of applications and services provided by Google on 
top of the Android Application Framework. GMS test suite (GTS) is an automated test suite to test 
GMS applications including Video content for bit rates and resolutions supported by Google Play 
Videos. 
GTS Overview
The GTS is an automated test suite that includes two major software components:
i. A test harness - Tradefed (also used by Android Compatibility Test Suite(CTS)) used for GTS 
testing. Tradefed runs on your desktop machine and manages test execution.
ii. GTS test cases executed on attached mobile devices or on an emulator. The test cases 
are written in Java as JUnit tests and packaged as a Android .apk file to run on the actual 
device target.
Test Setup and Workflow
i. Extract GTS from the GMS distribution site onto your linux desktop machine.
ii. Install and configure GTS. 
a. Attach at least one device to your machine. 
b. GTS can be executed only on consumer devices.
i. Your phone must be running a user build (Android 4.0 and later) from 
source.android.com
ii. Make sure that your device has been flashed with a user build (Android 4.0 
and later) before you run GTS.
c. Launch GTS
i. The GTS test harness loads the test plan onto the attached devices.
ii. To run GTS test plan:
1. Make sure you have at least one device connected. Launch the GTS 
console by running the xts-tradefed script e.g.
$ ./android-xts/tools/xts-tradefed
2. Start the GTS test plan (containing all of the test packages) by typing 
run xts --plan XTS. This will kick off all the GTS tests required
3. Alternately, you can just run GTS from the command line using $ ./
android-xts/tools/xts-tradefed run xts --plan XTS
iii. 4. You should see test progress and results reported on the console.
Copyright © 2012, Google Inc. All rights reserved.d. The test harness executes the GTS tests on the device including executing videos 
test and record the test results. 
iii. Test Results
a. Once all the tests are executed, you can view the test results in your browser.  
b. To upload test results, sign into a Google account and upload the test result to 
Android Partner Frontend (http://partner.android.com). Ensure that the Google 
account used for testing is allowed access to Android Partner Frontend. Upload GTS 
test result into Android Partner Frontend using the web interface or upload test 
results using Android Partner API.
Setting up and using the GTS
1. To run GTS, make sure you have a recent copy of adb installed on your machine.
2. To install adb, download and install the Android SDK tools. Then add the SDK Platform 
tools component.
3. Ensure 'adb' is in your system path.
Example:
export PATH=$PATH:/home/myuser/android-sdk-linux_x86/platform-tools
Interpreting the Test Results
The test results are placed in the file: $XTS_ROOT/repository/results/.zip
Inside the zip, the testResult.xml file contains the actual results. See below for a sample report 
output.
 
The 'device information' section provides details about the device including make, model, and 
Android platform version. The 'package information' section includes the list of GMS packages.
The details of the executed test plan are present in the 'test summary' section. It also presents an
aggregate summary of the number of tests that passed, failed, time out or could not
be executed.
 
Google Services Test Suite Report for Galaxy Nexus - 
014E054719016015
 
Device Information  
 
Build Model Galaxy Nexus
Build Name takju
 
Copyright © 2012, Google Inc. All rights reserved.Build Brand google
Build 
Manufacturer
samsung
Device ID 014E054719016015
Firmware Version 4.0.4
Firmware Build 
Number
IMM76D
Build Fingerprint google/takju/maguro:4.0.4/IMM76D/299849:user/release-keys
Android Platform 
Version
15
Packages ● com.android.backupconfirm
● com.android.bluetooth
● com.android.calculator2
● com.android.certinstaller
● com.android.contacts
● com.android.cts.acceleration.stub
● com.android.cts.holo
● com.android.cts.stub
● com.android.defcontainer
● com.android.facelock
● com.android.htmlviewer
● com.android.keychain
● com.android.launcher
● com.android.livewallpaper.microbesgl
● com.android.mms
● com.android.musicfx
● com.android.musicvis
● com.android.nfc
● com.android.noisefield
● com.android.packageinstaller
● com.android.phasebeam
● com.android.phone
● com.android.providers.applications
● com.android.providers.calendar
● com.android.providers.contacts
● com.android.providers.downloads
● com.android.providers.downloads.ui
● com.android.providers.drm
● com.android.providers.media
● com.android.providers.settings
● com.android.providers.telephony
Copyright © 2012, Google Inc. All rights reserved.● com.android.providers.userdictionary
● com.android.settings
● com.android.sharedstoragebackup
● com.android.soundrecorder
● com.android.stk
● com.android.systemui
● com.android.vending
● com.android.voicedialer
● com.android.dialogs
● com.android.wallpaper
● com.android.wallpaper.holospiral
● com.android.wallpaper.livepicker
● com.google.android.apps.books
● com.google.android.apps.genie.geniewidget
● com.google.android.apps.maps
● com.google.android.apps.plus
● com.google.android.apps.uploader
● com.google.android.apps.walletnfcrel
● com.google.android.backup
● com.google.android.browser
● com.google.android.calendar
● com.google.android.camera
● com.google.android.deskclock
● com.google.android.email
● com.google.android.exchange
● com.google.android.feedback
● com.google.android.gallery3d
● com.google.android.gm
● com.google.android.googlequicksearchbox
● com.google.android.gsf
● com.google.android.gsf.login
● com.google.android.inputmethod.latin
● com.google.android.inputmethod.latin.dictionarypack
● com.google.android.location
● com.google.android.marvin.talkback
● com.google.android.music
● com.google.android.onetimeinitializer
● com.google.android.partnersetup
● com.google.android.setupwizard
● com.google.android.street
● com.google.android.syncadapters.bookmarks
● com.google.android.syncadapters.contacts
● com.google.android.tag
● com.google.android.talk
Copyright © 2012, Google Inc. All rights reserved.● com.google.android.tts
● com.google.android.videoeditor
● com.google.android.videos
● com.google.android.voicesearch
● com.google.android.youtube
● com.google.earth
Properties ● ro.com.google.clientidbase: android-google
● ro.com.google.mcc_fallback: 262
Camcorder Profiles ● 480p
● 720p
● 1080p
● cif
● qvga
Self Certification As part of the studio's DRM requirements, by submitting the 
Video test report, you certify that you are compliant with 
the robustness requirements pursuant to the Widevine 
integration and distribution agreement.
 
Test Summary
 
XTS version 4.0.3_r1
Test timeout 600000 ms
Host Info tarheel2.mtv.corp.google.com (Linux - 2.6.38.8-gg784)
Plan name XTS
Start time Tue Apr 17 20:26:14 PDT 2012
End time Tue Apr 17 20:37:11 PDT 2012
Tests Passed 5
Tests Failed 0
Tests Timed out 0
Tests Not 
Executed
0
Test Summary by Package
Test Package Passed Failed Timed Out Not Executed Total Tests
Copyright © 2012, Google Inc. All rights reserved.google.media 5 0 0 0 5
Detailed Test Report
Test Package: google.media    
Test Result Failure Details
com.google.android.xts.media.MediaPlayerTest    
-- testM2PS_H264_AAC_480P_WV_MULTI_480p pass  
-- testM2PS_H264_AAC_720P_WV_720p pass  
-- testM2PS_H264_AAC_720P_WV_MULTI_720p pass  
-- testM2PS_H264_AAC_HIGH_WV_480p pass  
-- testM2PS_H264_AAC_MED_WV_360p pass  
 
 
FAQ
I. Should device builds targeted to geographies where Google Play Videos is not available 
include Widevine?
Google provides Widevine DRM for free on compatible Android devices to ensure that 
there is at least one consistent DRM available across all devices. Starting Jan, 2012, 
Widevine DRM integration is mandatory on all Android 3.0 and higher platform builds.
II. Are additional details required for Widevine DRM self certification? 
Partners shipping WV are required to satisfy the WV robustness rules and self-certify 
that the device implementation is compliant. By submitting the GTS test result, device 
manufacturers are ensuring that they meet the Widevine robustness rules. No additional 
details are required.
III. What video resolutions and bit rates are tested?
The following resolutions and bit rates are included in testing
a. Test stream (H264/AAC) with 480P resolution and Adaptive Bit Rate (ABR) support
b. Test stream (H264/AAC) with 480P resolution 
c. Test stream (H264/AAC) with 720P resolution and Adaptive Bit Rate (ABR) support
d. Test stream (H264/AAC) with 720P resolution 
e. Test stream (H264/AAC) with 360P resolution 
IV. What Android platforms are supported by GTS?
GTS supports Android 4.0 and higher platforms.
V. Are all devices expected to support 720p?
No, not all devices support 720p resolutions and on some devices the 720p content 
Copyright © 2012, Google Inc. All rights reserved.playback may fail. The tests are expected to fail on devices that do not support 720p 
resolution.

Copyright © 2012, Google Inc. All rights reserved.





谷歌移动服务测试套件(GTS)
1版(2012年4月23日)
内容:
景区简介
GTS的概述
测试设置和工作流程
设置和使用GTS
常见问题解答
版权©2012,谷歌公司保留所有权利。
景区简介
谷歌移动服务(GMS)是一家集由谷歌对应用程序和服务
安卓应用框架。GMS测试套件(GTS)是一个自动化的测试套件的测试
GMS应用包括视频比特率和分辨率支持谷歌玩
视频
GTS的概述
GTS是一个自动化的测试套件,包括两个主要的软件组件:
一、测试线束- tradefed(也使用Android的兼容性测试套件(CTS))用于GTS
试验。tradefed运行在您的桌面机和管理测试执行。
二。GTS测试用例连接移动设备或模拟器上执行。测试用例
是写在Java的JUnit测试和封装为一个Android APK文件。运行于实际
设备目标。
测试设置和工作流程
一、提取GTS从GMS配送站点到你的Linux桌面机。
二。安装和配置GTS。
答:至少有一个设备连接到您的机器。
B. GTS只能在消费设备中执行。
一、你的手机必须运行一个用户构建(安卓4和以后)
source.android.com
二。确保您的设备已被闪烁的用户构建(安卓4
后来你跑GTS前)。
C.推出GTS
一、GTS测试负载测试计划上附加设备。
二。运行GTS测试计划:
1。确保你有至少一个连接的设备。推出GTS
通过运行脚本,如tradefed XTS控制台
美元。/ Android XTS /工具/ XTS tradefed
2。启动GTS测试计划(包含所有的测试包)输入
运行计划XTS XTS—。这将启动所有GTS测试要求
3。或者,你可以从命令行运行GTS美元/使用。
Android XTS /工具/ XTS tradefed运行XTS——计划XTS
4。你应该看到在控制台上看到的测试进展和结果。
版权©2012,谷歌公司保留所有权利。D.测试工具执行测试装置包括GTS执行视频
测试并记录测试结果。
测试结果
一旦所有的测试被执行,你可以在浏览器中查看测试结果。
要将测试结果上传到一个谷歌帐户,然后将测试结果上传到
Android合作伙伴的前端(HTTP:/ /合作伙伴。Android。COM)。确保谷歌
用于测试帐户可以访问Android合作伙伴的前端。上传GTS
试验结果为Android合作伙伴的前端使用Web界面或上传测试
使用安卓合作伙伴。
设置和使用GTS
1。运行GTS,确保你有亚行在机器上安装一个新副本。
2。安装ADB,下载和安装Android SDK工具。然后添加SDK平台
工具组件。
3。确保“亚洲开发银行”在您的系统路径中。
例子
出口路径= $路径:/家/中/ android-sdk-linux_x86平台/工具
解释测试结果
测试结果放在文件xts_root美元/仓库/结果/ <开始>。邮编
在压缩的文件,testresult.xml包含实际结果。见下面的样本报告
输出。
“设备信息”部分提供了有关该设备的详细信息,包括制作,模型和
安卓平台版。“套餐信息”部分包括GMS软件包列表。
执行测试计划的细节在“测试汇总”部分中出现。它还提出了一个
对传递、失败、超时或不能进行的测试的数量汇总汇总
被执行。
谷歌服务测试套件银河系关系的报告—
014e054719016015
设备信息
建立模型星系关系
建立名称takju
版权©2012,谷歌公司保留所有权利。谷歌打造品牌
建立
制造商
三星
设备ID 014e054719016015
固件版本4.0.4
固件构建

imm76d
建立指纹谷歌/ takju /付:4.0.4 / imm76d / 299849:用户/释放键
安卓平台
15
Packages ● com.android.backupconfirm
● com.android.bluetooth
● com.android.calculator2
● com.android.certinstaller
● com.android.contacts
● com.android.cts.acceleration.stub
● com.android.cts.holo
● com.android.cts.stub
● com.android.defcontainer
● com.android.facelock
● com.android.htmlviewer
● com.android.keychain
● com.android.launcher
● com.android.livewallpaper.microbesgl
● com.android.mms
● com.android.musicfx
● com.android.musicvis
● com.android.nfc
● com.android.noisefield
● com.android.packageinstaller
● com.android.phasebeam
● com.android.phone
● com.android.providers.applications
● com.android.providers.calendar
● com.android.providers.contacts
● com.android.providers.downloads
● com.android.providers.downloads.ui
● com.android.providers.drm
● com.android.providers.media
● com.android.providers.settings
● com.android.providers.telephony
Copyright © 2012, Google Inc. All rights reserved.● com.android.providers.userdictionary
● com.android.settings
● com.android.sharedstoragebackup
● com.android.soundrecorder
● com.android.stk
● com.android.systemui
● com.android.vending
● com.android.voicedialer
● com.android.dialogs
● com.android.wallpaper
● com.android.wallpaper.holospiral
● com.android.wallpaper.livepicker
● com.google.android.apps.books
● com.google.android.apps.genie.geniewidget
● com.google.android.apps.maps
● com.google.android.apps.plus
● com.google.android.apps.uploader
● com.google.android.apps.walletnfcrel
● com.google.android.backup
● com.google.android.browser
● com.google.android.calendar
● com.google.android.camera
● com.google.android.deskclock
● com.google.android.email
● com.google.android.exchange
● com.google.android.feedback
● com.google.android.gallery3d
● com.google.android.gm
● com.google.android.googlequicksearchbox
● com.google.android.gsf
● com.google.android.gsf.login
● com.google.android.inputmethod.latin
● com.google.android.inputmethod.latin.dictionarypack
● com.google.android.location
● com.google.android.marvin.talkback
● com.google.android.music
● com.google.android.onetimeinitializer
● com.google.android.partnersetup
● com.google.android.setupwizard
● com.google.android.street
● com.google.android.syncadapters.bookmarks
● com.google.android.syncadapters.contacts
● com.google.android.tag
● com.google.android.talk
Copyright © 2012, Google Inc. All rights reserved.● com.google.android.tts
● com.google.android.videoeditor
● com.google.android.videos
● com.google.android.voicesearch
● com.google.android.youtube
● com.google.earth




性能●ro.com.google.clientidbase:谷歌Android
●ro.com.google.mcc_fallback:262
摄像机配置●480p
●720p
●1080p
●CIF
●QVGA
自我认证作为工作室的DRM需求的一部分,通过提交
视频测试报告,你证明你符合
鲁棒性要求,根据Widevine
整合与分销协议。
试验总结
4.0.3_r1 XTS版
测试超时600000毫秒
主机信息tarheel2.mtv.corp.google.com(Linux - 2.6.38.8-gg784)
计划名称XTS
开始时间周二Apr 17 20:26:14 PDT 2012
结束时间周二Apr 17 20:37:11 PDT 2012
测试通过5
测试失败0
测试超时0
测试不
执行
0
试验总结
测试包通过失败超时不执行的测试
版权©2012,谷歌公司旗下的所有权利reserved.google.media 5 0 0 0 5
详细测试报告
测试包:google.media
测试结果失败的细节
com.google.android.xts.media.mediaplayertest
——testm2ps_h264_aac_480p_wv_multi_480p通
——testm2ps_h264_aac_720p_wv_720p通
——testm2ps_h264_aac_720p_wv_multi_720p通
——testm2ps_h264_aac_high_wv_480p通
——testm2ps_h264_aac_med_wv_360p通
常见问题解答
一、要设备建立针对地域如谷歌播放视频不可用
包括Widevine?
谷歌提供Widevine DRM免费在兼容的Android设备保证
至少有一个一致的DRM可以跨所有设备。起点1月,2012,
Widevine DRM整合所有Android 3和更高的平台强制建立。
二。对Widevine DRM自认证所需的更多细节?
合作伙伴需要满足航运西弗吉尼亚WV鲁棒性规则和自我证明
该设备的实现是兼容的。通过提交GTS测试结果,装置
制造商确保他们满足Widevine的鲁棒性规则。不附加
细节是必需的。
什么视频分辨率和比特率进行测试?
在测试中包括以下的分辨率和比特率
A.测试流(H264 / AAC)与480P分辨率和自适应比特率(ABR)支持
B.测试流(H264 / AAC)与480P分辨率
C.测试流(H264 / AAC)与720p分辨率和自适应比特率(ABR)支持
D.测试流(H264 / AAC)720p分辨率
E.测试流(H264 / AAC)与360P分辨率
四、什么Android平台支持GTS?
GTS支持Android 4.0和更高的平台。
五,所有设备将支持720p?
不,不是所有设备都支持720p分辨率和一些设备的720p的内容
版权©2012,谷歌公司旗下的所有权利reserved.playback可能失败。该试验预计在不支持720p设备失败
解析。
版权©2012,谷歌公司保留所有权利。

你可能感兴趣的:(GTS)