The controls in the Video.Taxi Player can be shown and hidden individually as follows:
- If you want to enable controls in the player:
- Append to player src-URL the following parameter
controls[]=play-large&controls[]=play&controls[]=durationwith the controls you want to enable.
- Append to player src-URL the following parameter
- If you want to disable controls in the player:
- Append to player src-URL the following parameter
controls_rm[]=play-large&controls_rm[]=volumewith the controls you want to disable.
- Append to player src-URL the following parameter
- If you add params to add and remove controls, the element to show will be preferred.
- Please note: if you use more params, you join them by
&sign. Like?param1=true¶m2=false
List of controls
play-large// The large play button in the centerplay// Play/pause playbackprogress// The progress bar and scrubber for playback and bufferingcurrent-time// The current time of playbackduration// The full duration of the mediamute// Toggle mutevolume// Volume controlcaptions// Toggle captionssettings// Settings menudownload// Download menupip// Picture-in-picture (currently Safari only)airplay// Airplay (currently Safari only)fullscreen// Toggle fullscreenquality// Toggle quality
Example for iFrame:
<iframe width="850" height="478" src="https://media.video.taxi/embed/M8FKQb3lBsPo?controls_rm[]=volume" frameborder="0" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture" allowfullscreen></iframe>
Autoplay header video without controls in loop
To display an autoplay header video without controls in the loop, hide all controls and use the following additional parameters:
title=false// Hide the video titlemute=true// Automatic mutingloop=true// Activate endless loop
Example for iFrame:
<iframe width="850" height="478" title="Video.Taxi Trailer" src="https://media.video.taxi/embed/M8FKQb3lBsPo?controls_rm[]=play-large&controls_rm[]=play&controls_rm[]=progress&controls_rm[]=current-time&controls_rm[]=duration&controls_rm[]=mute&controls_rm[]=volume&controls_rm[]=captions&controls_rm[]=settings&controls_rm[]=download&controls_rm[]=pip&controls_rm[]=airplay&controls_rm[]=fullscreen&controls_rm[]=quality&title=false&mute=true&loop=true" frameborder="0" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture" allowfullscreen></iframe>