python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why doesn't `width:100%; height:100%; object-fit: contain;` make a <video> fit its container?
So I have a page with a grid layout, with a header and a footer and a black content container in the middle.
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.container {
display: grid...
Peter Olson
Votes: 0
Answers: 1
What are the metadata tags for 360 video, how do I set them from Blender / ffmpeg / script?
I want to start making more 180* / 360* animations with Blender. I recently read that VLC is among the first video players to properly support panoramic video, it's one I use so that's great news on t...

MirceaKitsune
Votes: 0
Answers: 1
Create a video file with a specific duration using opencv
I want to record a video file from an IP camera with a duration of 30 minutes (2 fps).
My problem is that the video file duration is not exactly 30 minutes, it's about 28-29 minutes.
It's because of t...
Shalom
Votes: 0
Answers: 2
ffmpeg cut the video and get accurate begining time of the result
I do the cut via:
ffmpeg -i long_clip.mp4 -ss 00:00:10.0 -c copy -t 00:00:04.0 short_clip.mp4
I need to know the precise time where did the ffmpeg do the cut (Time of the closest keyframe before the...
Pavlo Sharhan
Votes: 0
Answers: 1