Skip to main content

Questions tagged [video-processing]

Video processing deals mostly with filtering video frames. Most common filters are noise removal, contrast and color modifications. For questions related to trimming and modifying videos use [video-editing], and [video-encoding] for questions related to editing videos into any format.

video-processing
-2 votes
0 answers
32 views

How to classify what specific actions an object performs in a video. (not using only a frame, using set of frames) [closed]

I want to create an artificial intelligence model that determines the outcome of object behavior by looking at the collections of frames, rather than determining whether the golf ball entered or went ...
애플루트's user avatar
0 votes
1 answer
42 views

Using scenedetect to spot subtle cut edits in a video? [closed]

I'm trying to use the Scenedetect Python package to detect subtle cuts in a video. For example, I'm looking at this video: https://www.youtube.com/watch?v=fNb_-Tmxq8Q I have downloaded the video and ...
garson's user avatar
  • 1,577
-2 votes
0 answers
39 views

How to merge multiple videos end-to-end with yt-dlp or ffmpeg [closed]

We want to download a bunch of small sections of videos then stitch them all together into one big video. How would we go about this? Is there a way to bulk-stitch together videos from a particular ...
Pengu's user avatar
  • 1
0 votes
0 answers
25 views

How to add subtitles using FFmpeg-kit?

I'm running a flutter app with Ffmpeg-kit package to burn a subtitle on a video. i have a words list with the timings and map that to generate an srt and ass file. but when executing this tho it didn'...
Mohammed Bekele's user avatar
0 votes
0 answers
45 views

How to send large data to the renderer process with low latency in electron?

I'm working on a video-related project where I've disabled nodeIntegration and enabled contextIsolation for security reasons. My task involves processing business logic in the utility process and then ...
li wakin's user avatar
0 votes
1 answer
32 views

How to add a subtitle to a video using ffmpeg in Flutter?

I'm using flutter_ffmpeg_kit_full package to add subtitles to my video. First I loop through all words and create an srt file and stored it in temp folder: Future<String> _createSrtFile() async ...
Mohammed Bekele's user avatar
0 votes
0 answers
30 views

in Node.js how to dynamically crop/trim mp4 video file from AWS S3 and return it via streaming to HTML Video player

const res = await pipeline( initiateObjectStream(videoKey, start, end), response, ); I have the functionality of a webinar platform. It has a recorded video that needs to be ...
turaiev's user avatar
  • 21
0 votes
0 answers
40 views

How to detect if a video is progressive or interlaced?

I'm writing some Python 3 code to analyze uploaded videos, but I'm unsure how to determine if the video is progressive or interlaced. It's probably somewhere in one of the cv2.CAP_PROP_.... properties,...
Eelco's user avatar
  • 11
0 votes
1 answer
54 views

How to create and manipulate MP4 video frames using only native Lua?

Question: I'm working on a project where I need to create an MP4 video and control its frames entirely using Lua, without relying on any external APIs. The goal is to both generate and read video ...
NiTerleski's user avatar
0 votes
0 answers
63 views

Using byte range requests to get frame image from MP4 video

I am trying to make a clone of Youtube and doing it from the tutorial, where the guy is manually creating thumbnail images by using ffmpeg tool to get pictures. That does not sound like an ideal ...
medreres's user avatar
0 votes
0 answers
44 views

How do I parse an MPEG TS file in order to acquire the packets in C#

I want to parse split TS MPEG files acquiring the packets' payloads. I am not sure how to accomplish this. What I have tried so far is iterating over the entire file reading 188 bytes and checking the ...
Kaleega's user avatar
  • 137
1 vote
0 answers
42 views

Python opencv/cv2 video generation - FPS/Frames desync

I have a weird problem related to fps/sync of frames. Firstly, I have an input .mkv video in 30fps. cap: cv2.VideoCapture = cv2.VideoCapture(example_video.mkv) Then I break it into frames and work ...
Neruay's user avatar
  • 31
-3 votes
1 answer
53 views

ffmpeg auto scaling problem - Picture width must be an integer multiple of the specified chroma subsampling [closed]

Apparently one of my input files have a wonky aspect ratio and it lands on a "non - integer" auto scaled width. which produces an error message about chroma multiples (naturally) ffmpeg -i &...
kali's user avatar
  • 1,155
0 votes
0 answers
42 views

Video steganography - spatial domain

I'm having problems implementing steganographic methods for video. I am trying to implement a simple LSB coder and decoder in YUV components using Hamming code (7,4) for error correction. My code can ...
Natt's user avatar
  • 1
1 vote
0 answers
26 views

Video formats that support writing in a rolling fashion?

Are there any video formats out there that support writing in a rolling fashion? e.g. if I have a mmap/file that is the size of a 3 seconds video (1920x1080) at 30fps, I want to write frames to it ...
captain's user avatar
  • 873

15 30 50 per page
1
2 3 4 5
205