This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I need to overlay the frame number to each frame of a video file using ffmpeg for windows. I succeeded in overlaying a timecode stamp with the drawtext filter using this code: ffmpeg -i video.mov -vcodec r210 -vf "drawtext=fontfile=Arial.ttf: timecode='01\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000099" -y output.mov However, I [...] read more
This subject was discussed here before but my problem is a little different. I have a transparent tiff sequence with sequential numbers that I wish to overlay on top of another tiff sequence in order to create a video file. In addition, I'd like to add a text overlay from [...] read more
Occasionally I encountered Blue Screen of Death on my Windows 7 32 bit ( Yes, windows 7!). I believe that this is software error, and from Event Viewer I can see when and what the error is. This is a sample of such a report: > The computer has rebooted [...] read more
I am getting the Exception thrown at 0x0044369D in Project2.exe: 0xC0000005: Access violation writing location 0x00000099. From my research so far, I am under the impression this has to do with a null pointer or out of range memory being accessed from the line mov [eax], ecx I used the [...] read more
I'm converting a sequence of exr images to a mov with a text overlay. I'm stamping the frame number into the mov file. The issue is my sequence starts at 1001 and using text=%{n} is that n is zero based. Can I offset this with my start_frame number? or use [...] read more
I have an avi video and I want to display frame number in the video. Frame rate = 40fps I'm using this script: ffmpeg -i maxSSIM_realTime_C_L_560x448.avi -vf "drawtext=fontfile=Arial.ttf: text=%{n}: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000099" -qscale 0 -y maxSSIM_real_time.avi But I get [Parsed_drawtext_0 @ 0000000000732d00] Cannot find a valid font for [...] read more
I need to convert a code like the following so that "infoLabel" will show a picture instead of text. This code reads from an XML string that had a field id of 'posteruri' instead of 'description' I have and example of the working script with the Label/description. And my attempt [...] read more
Im trying to create a video for testing framrate html5 players this video need to contain rectanges for each frame for the first 10 frames i need it to be dynamic. for now i have the following command: ffmpeg -loop 1 -i black.png -c:v libx264 -t 15 -r 30 -vcodec [...] read more
I gathered some images from internet (in some dimension) and concatenated in a file. You may find this file here: https://s13.postimg.org/quxuzstef/catalog2.jpg I am trying to make a sliding show effect by using ffmpeg's overlay option. The command i use basically creates a window and move an image beneath this window. [...] read more
I am using the following command to stream to a test an endpoint: ffmpeg -loglevel debug -f lavfi -re -i testsrc=size=hd720:rate=30 -f lavfi -re -i anoisesrc -vf "drawtext=fontfile=\'/Library/Fonts/Arial.ttf\': text=\'Local time %{localtime\: %Y\/%m\/%d %H.%M.%S} (%{n})\': x=50: y=50: fontsize=48: fontcolor=white: box=1: boxcolor=0x00000099" -pix_fmt yuv420p -c:v libx264 -b:v 1000k -g 30 -profile:v baseline [...] read more