All Questions
1,604 questions
0
votes
0
answers
32
views
How to get a scrolling effect and make a video appear
I would like to obtain a scrolling effect (from left to right) and have a video appear inside the div (not above or below) that plays.
This is the HTML and JQUERY code:
.container {
display: ...
1
vote
0
answers
38
views
AGORA: Can't load device of app (Flutter) when calling video between app & web
Here's my config and log
let client = AgoraRTC.createClient({
mode: 'rtc',
codec: "h264",
role: 'host'
})
//#2
let config = {
appid: '{{ $agora_chat->appid }}',
token:...
0
votes
1
answer
64
views
html5 video player second playlist
need for my side a videoplayer with two paylisten get but not to run.
if you select a video from list one at beginning, nothing works, after selecting a video from list two the list one works.
html:
&...
0
votes
0
answers
115
views
How to Play Multiple Videos on Different Slides in Bootstrap Carousel on TV Browser?
I'm working on a project where I have a Bootstrap carousel displaying images and videos. I've implemented a solution to run a video when the slide is active, and it works fine for the first video. ...
1
vote
0
answers
33
views
Detect mode/srclang from selected subtitle track tag in video, or when subtitles are turned off
On our site we have video tags, some of which have captions/subtitles in the form of track tags inside the main video tag.
Sometimes we would just have one track tag, usually with label="English&...
0
votes
0
answers
126
views
How to Play & Unmute Html Video that comes into View
I am attempting to play & unmute html videos as they come into view. The code below ⬇, is what I use to play the videos when the come into view currently.
// is visible function
function ...
1
vote
1
answer
137
views
Is there a way to change the source of an html video object without making it look glitchy?
I'm trying to make something like a video call interface, but I'm playing videos that get generated based on user responses. I need to be able to switch between the video currently displayed to the ...
0
votes
0
answers
17
views
Removing the loop attribute from a video not working with jQuery on https://workswith.silabs.com/home
I'm trying to remove the loop from the video banner on this website: https://workswith.silabs.com/home
I tried removing the loop via jQuery but it didn't work but I'm guessing I need to target the ...
0
votes
1
answer
411
views
muting/unmuting video with jquery doesn't seem to work
I'm trying to force all browsers, including Safari, to play video sound. So I set all videos to be muted. If the user clicks the "Begin" button, then all videos are NOT muted. When you ...
1
vote
1
answer
165
views
How to show a quiz in HTML over Vimeo video in fullscreen mode
for sure it is easy when the video is not fullscreen.
here the structure
.boiteVideo iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#affiche{
z-index: 2147483647;
...
0
votes
1
answer
24
views
click on a button placed over a video results in unwanted play/stop
I have a wrap and a video and button inside
Click on button results in unwanted play/stop
I want to play/stop video only if video is clicked and not any other element inside wrap
And keep the button ...
0
votes
2
answers
278
views
Change Video Volume via jquery
I want to change the volume of a video using jQuery. So far it's not working. The trigger('play') works. Is it a problem because the element has no id?
jQuery('.v1 .wpb_single_image').click(function() ...
0
votes
1
answer
242
views
How to make background blur just behind the text? [closed]
I want blur the text area like this image I have attached but regarding the image I have video behind this. I have tried it with mix-blend css property or svg text tag but both didn't work for me. Can ...
0
votes
0
answers
352
views
How to increase video illumination or brightness?
By this I do not mean style.filter, I mean like in an actual video player where the user swipes up / down to increase the brightness of the video. I have made research and most of what I've found are ...
1
vote
1
answer
2k
views
How to implement play() and pause() on HTML5 Video in jQuery?
I have a HTML video with a DIV containing custom controls over it.
The play button works fine, but the pause button does not. There are two weird things happening:
The media.pause() method just does ...