안드로이드
안드로이드 코틀린 / 동영상 링크 걸기, kotlin video link
캬옹냐옹
2022. 8. 30. 13:32
728x90
특정 동영상을 인터넷창에 링크를 거는 방법이다.
//유튜브
//val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://youtu.be/0wezH4MAncY?autoplay=1&mute=1&controls=0&loop=1&modestbranding=1&playsinline=0"))
//비메오
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://player.vimeo.com/video/376759686?autoplay=1&muted=1&loop=1&title=0&byline=0&portrait=0"))
startActivity(intent)
자동 재생할려면 muted=1 설정해야 된다고 합니다.
추가로 플레이어 설정 자료 링크를 추가합니다.
유튜브
https://developers.google.com/youtube/player_parameters?hl=ko
비메오
728x90