stevenrobertson / cuburn

PyCUDA implementation of a GPU-accelerated fractal flame renderer.
Other
39 stars 11 forks source link

Cuburn always appends _0002.png on still images #8

Open MAD-OVERLORD opened 8 years ago

MAD-OVERLORD commented 8 years ago

Another minor problem is, if i want to render a still frame/image, and specify a name for that .png file like so: python main.py "$0" --resume --still --codec png --width 1280 --height 720 -n "/tmp/${outname}.png" CUBURN always append _0002.png no matter what i say, what completely defies the sense of being able to have a set name param.

nonno-cicala commented 8 years ago

@MAD-OVERLORD Every fractal in cuburn is treated like an animation, when you ask for a --still image it takes the second frame by default, but you can specify which one to take with the --start option , -n just sets the prefix.

P.S.: With the other comments today you made my day! :D

MAD-OVERLORD commented 8 years ago

@nonno-cicala Ok, so in other words, the basic problem is still the same, CUBURN don't let me decide the resulting name, so i have to mv "/tmp/${outname}.png_00002.png" "/tmp/${outname}.png" afterwards, what may be in perfect harmony with the unix philosophy, but not exactly in mine ;)

P.S.: I'm sorry, such was not my intention :D