Code Monkey home page Code Monkey logo

Comments (5)

pReya avatar pReya commented on May 20, 2024 2

Could be solved if we could just use a ref prop that would be forwarded to the iframe, so it could be programatically controlled.

from react-lite-youtube-embed.

iSuslov avatar iSuslov commented on May 20, 2024 1

Hey @ibrahimcesar somehow ref is always null for me.

"use client"
import LiteYouTubeEmbed from 'react-lite-youtube-embed';
import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css';
import {useRef} from "react";

export function VideoPlayer() {
    const myRef = useRef<HTMLIFrameElement>(null)
    
    return <div style={{width: '800px'}}>
        <LiteYouTubeEmbed
            id="zjkBMFhNj_g" // Default none, id of the video or playlist
            adNetwork={true} // Default true, to preconnect or not to doubleclick addresses called by YouTube iframe (the adnetwork from Google)
            params="" // any params you want to pass to the URL, assume we already had '&' and pass your parameters string
            playlist={false} // Use true when your ID be from a playlist
            playlistCoverId="L2vS_050c-M" // The ids for playlists did not bring the cover in a pattern to render so you'll need pick up a video from the playlist (or in fact, whatever id) and use to render the cover. There's a programmatic way to get the cover from YouTube API v3 but the aim of this component is do not make any another call and reduce requests and bandwidth usage as much as possibe
            poster="hqdefault" // Defines the image size to call on first render as poster image. Possible values are "default","mqdefault",  "hqdefault", "sddefault" and "maxresdefault". Default value for this prop is "hqdefault". Please be aware that "sddefault" and "maxresdefault", high resolution images are not always avaialble for every video. See: https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api
            title="YouTube Embed" // a11y, always provide a title for iFrames: https://dequeuniversity.com/tips/provide-iframe-titles Help the web be accessible ;)
            noCookie={true} // Default false, connect to YouTube via the Privacy-Enhanced Mode using https://www.youtube-nocookie.com
            ref={myRef} // Use this ref prop to programmatically access the underlying iframe element

        />
        <button style={{marginTop: '100px'}} onClick={() => {
            console.log(myRef) // outputs {current: null}
            // @ts-ignore
            myRef.current.play()
        }}>Play
        </button>
    </div>
}

I'm using v2.4

from react-lite-youtube-embed.

ajmaurya99 avatar ajmaurya99 commented on May 20, 2024

onIframeAdded is not that helpful, we need the instance of the video object in return. That will help us manage the play and pause state of the video. Thanks :)

from react-lite-youtube-embed.

ibrahimcesar avatar ibrahimcesar commented on May 20, 2024

Solved by #87

from react-lite-youtube-embed.

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.