You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The video after output is not playable, is there any advice to solve the problem ??
I had tried to use command /build/evsim -p ../filter/predictions_filteredfast.txt -r 60 -j joints.txt -w 240 -h 180 -v
which let the executable reder on the screen, and it seems works fine.
The text was updated successfully, but these errors were encountered:
Yes, that's the known problem with the offscreen rendering. In the released version, -o argument not only disables screen output but unfortunately also disables the video output too, since it uses screen output (ref 1, ref 2).
A quick fix is to run the command without -o argument, as you suggested.
The only downside is that it will run slower due to screen output requiring vsync.
To speed up rendering in this mode, you can prepend __GL_SYNC_TO_VBLANK=0 to the command, e.g., __GL_SYNC_TO_VBLANK=0 /build/evsim -p ... in your case.
This disables VSYNC for the screen output with NVIDIA drivers, but doesn't seem to corrupt the output video in any way on two systems that we tested that on.
I run the step 3 in readme EVAL_REAL.md, try to generate the visualized video1000.mp4:
./build/evsim -o -p ../filter/predictions_filteredfast.txt -r 60 -j joints.txt -w 240 -h 180 -v | ffmpeg -y -s 240x180 -f rawvideo -pix_fmt rgb24 -framerate 60 -i pipe:0 -crf 1 -pix_fmt yuv444p video1000.mp4
but got some trouble with output below:
The video after output is not playable, is there any advice to solve the problem ??
I had tried to use command
/build/evsim -p ../filter/predictions_filteredfast.txt -r 60 -j joints.txt -w 240 -h 180 -v
which let the executable reder on the screen, and it seems works fine.
The text was updated successfully, but these errors were encountered: