Uncomment the following line to install geemap if needed.
# !pip install geemap
import geemap
from ipyleaflet import VideoOverlay
Map = geemap.Map(center=[25, -130], zoom=4)
Map
bounds = [(13, -130), (32, -100)]
io = VideoOverlay(
url='https://www.mapbox.com/bites/00188/patricia_nasa.webm',
bounds=bounds,
name='Video',
)
Map.add_layer(io)
io.interact(opacity=(0.0, 1.0, 0.01))