Questions tagged [video-watermarking]

For questions regarding the development and placement of watermarks on video interfaces. The tag is commonly associated with [video].

67 questions
18
votes
6 answers

iPhone Watermark on recorded Video.

In my Application I need to capture a video and Put a watermark on that video. The watermark should be Text(Time and Notes). I saw a code using "QTKit" Frame work. However I read that the framework is not available for iPhone. Thanks in…
Dilip Rajkumar
  • 6,832
  • 6
  • 58
  • 74
17
votes
1 answer

Adding an Image Frame or Watermark for Video in Android programmatically

I am working on an Android Camera Application which have capability of Image and Video capturing. Later users can annotate on the image and add watermark to Video. All went fine when drawing Annotation on Image but failed to get no solution. In…
TNR
  • 6,014
  • 3
  • 30
  • 61
12
votes
0 answers

Capture video with overlay data (or watermark)?

I'm creating a video recording app that record video via camera and show some overlay data info (such as current location, weather,... in other word, we can call these as watermark) at the same time. Currently, i create an overlay layout on top of…
Lạng Hoàng
  • 1,686
  • 3
  • 16
  • 31
7
votes
2 answers

Watermarking video from the Linux command line

does anyone know how to watermark video from the Linux command line using a simple tool? Watermarking in ffmpeg isn't supported in the current version, and requires a custom compile. Max.
user7289
  • 25,989
  • 27
  • 64
  • 86
6
votes
1 answer

Android Video Watermark, W/O Server?

I have been looking for a way to add a watermark, be it image or text, on a video. Something like "Property of XYZ", or how many seconds it's been since the video started recording "2:45." on the bottom right. So far, I have only found solutions…
5
votes
2 answers

Removing watermark from an image using bbox parameters

I am using a Computer Vision cloud service to detect watermarks on a set of images. The cloud service returns the location of the watermark in form of Bounding Box (bbox). For example, one output looked like this: "text": "Watermarked Text", …
Display name
  • 9,021
  • 3
  • 29
  • 59
5
votes
2 answers

is it possible to overlay an image on each frame of a video using FFMPEG

I am trying to overlay 10 different images on a 10 second video. I am currently able to overlay one image over the entire time span of the video using FFMPEG. I want to be able to see a different image every sec on the video. How can i achieve this…
ReubenCH
  • 123
  • 1
  • 9
4
votes
1 answer

Detect watermark/logo in image/video

I'm trying to analyze a video file and detect if it has a network logo on the bottom right corner. I figured it might be easier if I just take a few random frames and see if they have a logo/water mark in common. I just have no idea how to start. is…
4
votes
4 answers

Adding a image resource over video file from sd card using ffmpeg or MediaMuxer for android

I am stuck in this area which I am not comfortable at all to work in. Here is what I did so far: Made an Ubuntu VirtualBox machine Downloaded latest ffmpeg version which is 2.3.3 Compiled ffmpeg to be compatible with armv7-a so in the end I get two…
Alin
  • 13,513
  • 36
  • 111
  • 198
4
votes
3 answers

Watermarking on existing video

I'm looking for a method to watermarking on a video with C#. As writing text on it. Image or text label... How can I do it? Thanks.
Erçin Dedeoğlu
  • 3,688
  • 4
  • 39
  • 58
3
votes
3 answers

Is there a standard way of Watermarking videos in Python?

Is there any standard method of watermarking videos of some format in Python? And how about still images?
Max
  • 3,329
  • 4
  • 29
  • 44
3
votes
1 answer

TypeError: player.watermark is not a function when using videojs-watermark

I am trying to use the videojs-watermark npm module but the error which I am getting is: TypeError: player.watermark is not a function. The code is as follows: import React, { Component } from "react"; import videojs from "video.js"; import…
Vedant
  • 169
  • 1
  • 2
  • 12
3
votes
2 answers

Add a watermark image to a video

I'm new to AVFoundation, and i'm trying to add a image to a video. however i keep getting an error : failed Optional(Error Domain=AVFoundationErrorDomain Code=-11823 "Cannot Save" UserInfo={NSLocalizedDescription=Cannot Save,…
Peter Pik
  • 10,263
  • 17
  • 73
  • 131
2
votes
0 answers

What is the commmand line to add watermark while screen recording using ffmpeg?

I tried to record screen using ffmpeg commmand line. So, I have complete it using this commmand. ffmpeg.exe -rtbufsize 1500M -f -y -rtbufsize 100M -f gdigrab -t 00:02:00 -framerate 30 0 0 -probesize 10M 1920 1080 -draw_mouse 1 -i desktop -c:v…
Yong Ju
  • 41
  • 1
  • 5
2
votes
1 answer

How to switch between frames with in a video file

I am working on my project of switching between the frame within a multicast environment. Consider that i have two streams of same video file. one stream is watermarked with say 0 and another stream watermarked with 1. Depending on a key I have to…
1
2 3 4 5