How can I disable VideoJS Poster? #9007
Answered
by
amtins
aizquelurdaneta
asked this question in
Q&A
-
I want to prevent the |
Beta Was this translation helpful? Give feedback.
Answered by
amtins
Mar 16, 2025
Replies: 1 comment 2 replies
-
@aizquelurdaneta setting the const player = videojs('player', {
posterImage: false,
});
player.posterImage // is undefined |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
aizquelurdaneta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@aizquelurdaneta setting the
posterImage
property tofalse
will prevent thePosterImage
component from being created when the player is instantiated.