Top Banner
Ver. 1 # How to have a panoramic video view on Android device. P1 06/24/2022 powered by BH_Lin In order to have the VR or Panorama view for AD showcase in App, here are some steps to do. 1. Have related resources for this VR or Panorama view. 2. “SDK” need to provide component for this view. Need to implement this feature in SDK. 3. “App” need to include this specific component in view. Need to modify code for AD’s placement. olution [1]: Google VRView A physical Android device running Android 4.4 (KitKat) or higher for Cardboard apps or a Daydream Ready phone . Ref: https :// developer.android.com/about/dashboards/index.htm l
7

Panorama VR View on Android device.

Mar 19, 2017

Download

Design

Lin BH
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 # How to have a panoramic video view on Android device. P1

In order to have the VR or Panorama view for AD showcase in App, here are some steps to do. 1. Have related resources for this VR or Panorama view. 2. “SDK” need to provide component for this view.

Need to implement this feature in SDK.3. “App” need to include this specific component in

view. Need to modify code for AD’s placement.

Solution [1]: Google VRView

A physical Android device running Android 4.4 (KitKat) or higher for Cardboard apps or a Daydream Ready phone.

Ref: https://developer.android.com/about/dashboards/index.html

Page 2: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 # How to have a panoramic video view on Android device. P1

dependencies { compile 'com.google.vr:sdk-videowidget:1.30.0'}2.1M Mar  8 23:03 ./libraries/sdk-videowidget-1.30.0.aar

Code for the VR Views Video Widget (Experimetal API).Ref: https://developers.google.com/vr/android/reference/com/google/vr/sdk/widgets/video/package-summary

##Demo:https://www.youtube.com/watch?v=PC1zx_LurRA

Page 3: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 How to import Google VR SDK Sample P1

Clone the git repository: https://github.com/googlevr/gvr-android-sdk

Project Path:/Users/binghuan/Github/gvr-android-sdk

Page 4: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 Download the sample App P1

Page 5: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 # How to have a panoramic video view on Android device. P1

Project for Reference: https://github.com/flimshaw/Valiant360

Solution [2]: Implement the videoplayer

Page 6: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 The panoramic Video P1

A tool for manipulating spatial media (spherical video and spatial audio) metadata in MP4 and MOV files. It can be used to inject spatial media metadata into a file or validate metadata in an existing file.

Ref: https://github.com/google/spatial-media/tree/master/spatialmedia

Page 7: Panorama VR View on Android device.

05/02/2023 powered by BH_Lin

Ver. 1 To do… P1

ServerSide: Have a function to check if video is 360 video

Client: Integrate video player into SDK

Client: Integrate in-house SDK to app.

Client: Implement Video Player

[1]

[2]

[3]

[4]