Video from YouTube doesn't work on streamlit

I used

components.html("""
    <iframe   width="560" height="315"  src="https://www.youtube.com/embed/zaoiriEbncc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
    """ , scrolling = True , height = 350)  

for first time the video work well but after that the video doesn’t work again

i have tried

    components.iframe("""
    https://www.youtube.com/embed/zaoiriEbncc""" , scrolling = True , height = 350) 

and it’s worked

1 Like