Windows error 0x00000099, 153

Detailed Error Information

INVALID_LIST_FORMAT[1]

MessageThe DosMuxSemWait list is not correct.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070099.

INVALID_REGION_OR_SEGMENT[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x99: INVALID_REGION_OR_SEGMENT.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

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.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code153 (0x0099)

Questions

46votes
1answer

Frame Number Overlay With FFmpeg

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
ffmpeg
4votes
1answer

Multiple effect overlays with FFmpeg

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
ffmpeg
2votes
2answers

Send MiniDump to Microsoft after Recovering from OS Blue Screen

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
windows-7
1vote
0answers

x86: Access writing violation while using the OFFSET operator to address of array

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
exception
assembly
x86
1vote
1answer

ffmpeg, offset frame_num to start_frame when using drawtext

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
windows
cmd
ffmpeg
0votes
2answers

ffmpeg: drawtest cannot find font for the family Sans

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
video
fonts
ffmpeg
0votes
2answers

How do I replace infoLabel description with a Poster image?

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
brightscript
0votes
2answers

Powerpoint can't show a video with headers. I see green screen

I've created a video using ffmpeg that contains headers. My script for creating it is: ffmpeg.exe -f rawvideo -vcodec rawvideo -s 560x448 -r 40 -pix_fmt yuv420p -i C_L_560x448_40_static_maxSSIM_QP23_B2.yuv -vcodec rawvideo -qscale 0 -filter_complex "drawtext=fontsize=32: fontfile=FreeSerif.ttf: text='SSIM=0.961': x=(w-tw)/2: y=(lh/2): fontcolor=orange, drawtext=fontsize=22: fontfile=FreeSerif.ttf: text='Bitrate≤1800 [1873 kbps], Frame rate≥40 [43.98 fps]': x=(w-tw)/2: y=(lh/2+30): [...] read more
ffmpeg
powerpoint
windows-media-player
powerpoint-2016
0votes
1answer

how to draw n number of rectangles on video with ffmpeg

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
loops
ffmpeg
draw
0votes
0answers

Overlay image and smoothness

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
ffmpeg
-1votes
1answer

Timelimit plays for twice the duration

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
ffmpeg

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0