Git Product home page Git Product logo

Comments (8)

winterlovesong avatar winterlovesong commented on August 16, 2024 11

Hi,

sample use:

  • (void)playerViewDidBecomeReady:(YTPlayerView *)playerView{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"Playback started" object:self];
    [self.playerView playVideo];
    }

hope to help you.

from youtube-ios-player-helper.

apersaud avatar apersaud commented on August 16, 2024 8

For those trying to find the answer and getting to the bottom of this thread, @winterlovesong has the correct answer for auto playing but requires a bit more explanation.

  1. Make sure you add the controller as the delegate of player view and implement YTPlayerViewDelegate protocol.
  2. Implement func playerViewDidBecomeReady(_ playerView: YTPlayerView)
  3. Call playerView.playVideo() in that method to start playing the video
// Example
class MyPlayerController : UIViewController {

   override func viewDidLoad() {
       super.viewDidLoad()
       // Set the delegate property
       playerView.delegate = self

       let playerVars = ["showinfo" : 0] /// your vars
       playerView.load(withVideoId: "someId", playerVars: playerVars)
    }
}

extension MyPlayerController : YTPlayerViewDelegate {

    func playerViewDidBecomeReady(_ playerView: YTPlayerView) {
        // call play video when the player is finished loading.
        playerView.playVideo()
    }
}

from youtube-ios-player-helper.

anotherandersson avatar anotherandersson commented on August 16, 2024

Works great. Thanks!

from youtube-ios-player-helper.

arno608rw avatar arno608rw commented on August 16, 2024

OK,work

from youtube-ios-player-helper.

mohdhaider avatar mohdhaider commented on August 16, 2024

Works great, Thanks. 👍

from youtube-ios-player-helper.

odrianoaliveira avatar odrianoaliveira commented on August 16, 2024

thank you!!!

from youtube-ios-player-helper.

dennisvera avatar dennisvera commented on August 16, 2024

hello! I've been trying to get a youtube video to autoplay with YTPlayerView with no success. the video shows on my view controller but its does not autoplay. my code is on swift 3. any help appreciated!

override func viewDidLoad() {
    super.viewDidLoad()
    
    let playerVars = ["playsinline" : 0,
                      "autoplay" : 1,
                      "showinfo" : 0,
                      "rel" : 0,
                      "controls" : 0]
    
    videoPlayer.load(withVideoId: movieVideoKey, playerVars: playerVars)
    playerViewDidBecomeReady()
}

func playerViewDidBecomeReady() {
    videoPlayer.playVideo()
}

from youtube-ios-player-helper.

edpenano avatar edpenano commented on August 16, 2024

@dennisvera were you ever able to figure this out?

from youtube-ios-player-helper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.