• Projects 30
  • Rating 5.0
  • Rating 5 747

Budget: 20000 UAH Deadline: 5 days

20,000 UAH is a realistic budget for the first stage if we need to audit the current approach, identify bottlenecks, and assemble a working pipeline for preparing the video dataset.

We would start by checking the processing speed on your actual videos, after which we would optimize decoding, batch processing, OpenCV, FFmpeg, and MediaPipe. We can offload heavy operations to a more stable scheme so that the result works not only on 3 test files but on a normal volume of data.

> We need to see a sample video and the desired format of the output dataset.
> It is important to know whether there is already code that needs to be accelerated or if the pipeline needs to be built from scratch.

Look, there’s a nuance here - without this data, calculating the full implementation accurately is risky. However, the first technical stage can be completed within your budget in 5 days, after which we can provide a calm assessment of the entire system.

Similar logic cases from Ingello:

Similar project: Рефаткоринг приложения
  • Projects 5
  • Rating 5.0
  • Rating 673

Budget: 20000 UAH Deadline: 7 days

Hello, I worked on a Video Processing System for e-commerce — we automated the processing pipeline for 10,000+ videos, speeding up the process by 340% using FFmpeg and OpenCV parallel processing.

Do you already have an understanding of the dataset size and what specific metadata needs to be extracted through MediaPipe — positions, facial expressions, or something else?

I suggest we get in touch; I will provide you with free technical consultation and we can outline a development plan + I will tell you about my team!

  • Projects -
  • Rating -
  • Rating 271

Budget: 20000 UAH Deadline: 5 days

Good day!

I see that the essence is not just to "process the video," but to make it work quickly. This is precisely where pipelines on OpenCV + MediaPipe often lag, usually for predictable reasons.

Where the bottleneck mostly hides:

- frame-by-frame loop in pure Python instead of batch processing;
- software video decoding where it can be handed off to FFmpeg with hardware acceleration (NVDEC / VAAPI);
- MediaPipe inference at full resolution when a reduced frame is sufficient for the task;
- unnecessary copying of frames between memory and format conversions;

  • Projects 29
  • Rating 5.0
  • Rating 6 476

Budget: 20000 UAH Deadline: 10 days

A pipeline is needed that takes raw videos and outputs a ready-labeled dataset with minimal manual intervention.

Here’s how I build it: first, an FFmpeg layer for cutting, resizing, and normalizing FPS with parallel execution through multiprocessing.Pool. Next, MediaPipe for extracting key points or segmentation, with the result written into structured annotations. The critical speed point here is batching OpenCV operations and avoiding unnecessary decodings: we read the frame once, perform all transformations in memory, and only then write to disk.

What is the target throughput: how many hours of video need to be processed per session and what hardware is available (CPU core count, is there a GPU for MediaPipe)?

  • Projects -
  • Rating -
  • Rating 483

Budget: 20000 UAH Deadline: 8 days

Hello! I am ready to take on the development and optimization of your video pipeline.

I have extensive experience in building complex data processing systems (ETL pipelines) in Python, where it is critically important to optimize speed, memory usage, and eliminate bottlenecks. Working with arrays of video data fully falls under this architectural paradigm.

How I will address the speed optimization task:

FFmpeg and OpenCV: I will set up the fastest possible extraction and transformation of frames without unnecessary re-encoding. Instead of sequential processing, I will implement parallelism (through multiprocessing or asynchronous queues) so that FFmpeg does not idle and utilizes system resources at 100%.

MediaPipe: The use of computer vision models often blocks the main thread. I will optimize the transfer of frames to MediaPipe using batching and proper memory buffer management, which will significantly reduce I/O operation time.

  • Projects -
  • Rating -
  • Rating 278

Budget: 20000 UAH Deadline: 5 days

Good day! I worked on Python video processing pipelines — FFmpeg for batch decoding and cutting, OpenCV for frames, heavy operations were queued so that it could handle not 3 files, but thousands. To be precise: is MediaPipe here for labeling (pose/face) or as a frame filter? And is there already code that needs to be optimized, or a pipeline from scratch? Please provide a couple of typical videos and the desired dataset format — I will complete the first working stage in 5 days and show the real speed on your data.

  • Projects -
  • Rating -
  • Rating 384

Budget: 19000 UAH Deadline: 10 days

Hello! Optimizing video processing speed for datasets is a great architectural challenge. Preparing clean data is the most crucial stage in machine learning, and my experience in developing pipelines, backed by the Associate Data Scientist in Python certification, allows me to tackle this issue without "workarounds."

My vision for the technical solution (Speed Optimization):

FFmpeg instead of OpenCV for I/O: Reading and writing frames through the standard cv2.VideoCapture often becomes the main "bottleneck." I propose delegating video decoding to low-level FFmpeg (using NVENC/CUDA hardware acceleration if a GPU is available), while keeping OpenCV exclusively for lightweight matrix transformations of frames.

Asynchronous Processing and Batching: Processing frames in MediaPipe (especially heavy detection models) heavily burdens the CPU when executed sequentially. Implementing multiprocessing will allow us to utilize all CPU cores by splitting the video into batches and processing them in parallel.

Memory Optimization: Eliminating unnecessary copies of NumPy arrays in memory when transferring frames between FFmpeg, OpenCV, and MediaPipe (using shared memory for multiprocessing).

  • Projects 8
  • Rating -
  • Rating 960

Budget: 20000 UAH Deadline: 5 days

I have 7+ years of commercial experience in Python development. I have worked with image and video processing optimization, OpenCV, FFmpeg, MediaPipe, as well as multithreaded and asynchronous data processing.

I am ready to conduct an audit of the current solution, identify bottlenecks, and optimize performance without sacrificing quality. If necessary, I can redesign the processing pipeline, optimize frame handling, reduce unnecessary operations, utilize hardware acceleration (if available), and speed up the performance of OpenCV/FFmpeg and MediaPipe.

Before starting work, I will perform profiling to determine where performance is being lost, after which I will propose the most effective solution.

Timeline: 5–7 days (after reviewing the project, I will be able to provide a more accurate estimate).

I would be happy to discuss the details and get started.

  • Projects 32
  • Rating 5.0
  • Rating 11 944

Budget: 20000 UAH Deadline: 6 days

Good day! I have completed similar projects, ready to collaborate, write to me - we will discuss the details.

  • Projects -
  • Rating -
  • Rating 196

Budget: 20000 UAH Deadline: 7 days

I already have a practically ready similar solution for automated video dataset preparation - it can be quickly adapted to your format and launched, I'm in touch =)

The approximate first working stage - 20,000 UAH and 7 days.

In this stage, I would include profiling the current code, optimization through FFmpeg, OpenCV, and MediaPipe, batch processing, caching intermediate results, error logging, and a proper structure for the output dataset.

We can keep it simple - first, identify the main bottlenecks in speed, and only then add parallel processing or GPU if it really provides a gain.

Questions regarding the estimate - what is the approximate volume of video and what is the target processing time for one file?

  • Projects -
  • Rating -
  • Rating 201

Budget: 20000 UAH Deadline: 5 days

"Task type: video processing speed optimization - Python developer with experience in OpenCV, FFmpeg, MediaPipe"

No problem.

  • Projects 6
  • Rating 3.2
  • Rating 777

Budget: 19500 UAH Deadline: 12 days

Anatoliy, I understand that you need an efficient pipeline for automated and rapid preparation of video datasets. The main goal here is to significantly speed up video processing using the capabilities of Python, OpenCV, FFmpeg, and MediaPipe.

I will design and implement such a pipeline that will be optimized to work with your video data. The result will be a significant reduction in the time required to prepare datasets and an increase in the overall efficiency of your work.

Are there any specific requirements for the output format of the dataset or the type of metadata that needs to be extracted from the video?

  • Projects 9
  • Rating 5.0
  • Rating 656

Budget: 20000 UAH Deadline: 1 day

Good day, Anatoliy!
In general, the task is clear, but to provide an accurate response regarding the deadlines and price, I would like to clarify some questions that arose after analyzing your task.
Please write in private messages – we will discuss the details and your wishes.

  • Projects 10
  • Rating 5.0
  • Rating 1 796

Budget: 20000 UAH Deadline: 1 day

Hello. I will focus on deep optimization through parallel processing of frames and efficient use of GPU when possible, integrating FFmpeg for hardware acceleration of encoding/decoding and OpenCV/MediaPipe for algorithmic optimization. I have significant experience in developing high-performance video analysis systems, particularly using stream processing and custom C++/Cython extensions for Python, which allows achieving maximum speed. My developments include ready-made templates for efficient management of video streams and containerization of computations, ensuring scalability and stability of the solution. I suggest discussing all implementation details, final budget, and deadlines in personal messages.

Proposals concealed

The list does not show proposals concealed by the client or freelancer with a Plus profile, as well as proposals violating rules