Search found 4 matches

by cuddlyogre
2013-02-15T21:10:27-07:00
Forum: Users
Topic: Issue using %d operator and filename:label
Replies: 7
Views: 8899

Re: Issue using %d operator and filename:label

I am using 6.8.3 on Windows 7 and I have verified that "T" is not set as an environment variable. If I am reading you properly snibgo, it is a replicatable bug and not user error. In that case, I will file a bug report.

Your help was much appreciated.
by cuddlyogre
2013-02-15T14:13:05-07:00
Forum: Users
Topic: Issue using %d operator and filename:label
Replies: 7
Views: 8899

Re: Issue using %d operator and filename:label

Not sure what is happening, but I have found a bit of a workaround. The minimum amount of leading zeros you can have seems to be four in these cases and for each extra leading zero you want, you have to add 1 zero to %d and increment the number of leading zeros by the number of zeros you added. %04d ...
by cuddlyogre
2013-02-15T13:24:04-07:00
Forum: Users
Topic: Issue using %d operator and filename:label
Replies: 7
Views: 8899

Re: Issue using %d operator and filename:label

I am running it through the command prompt directly. When I use double percent signs, the exported file names get all screwed up or the command won't complete at all. I feel there is more to it than that.
by cuddlyogre
2013-02-15T13:03:31-07:00
Forum: Users
Topic: Issue using %d operator and filename:label
Replies: 7
Views: 8899

Issue using %d operator and filename:label

I am attempting to output all of the frames of an animated gif to an individual file, while preserving the frame's delay time. This is my command: convert.exe image.gif -coalesce -set filename:label %T "frame_%02d_%[filename:label]0.png" My problem is that when I use %02d I get file names like this ...