Search found 4 matches

by CrazyHomelessGuy
2016-07-05T17:12:10-07:00
Forum: Users
Topic: Specific Output Names when Using Convert
Replies: 6
Views: 4459

Re: Specific Output Names when Using Convert

I'm a hack at best when it comes to writing scripts. I need to be able to drag and drop images onto the script with no additional input as others besides myself will be using this script. This is currently working well, not sure if that is a fluke or not. As snibgo mentioned, if it's working, it's ...
by CrazyHomelessGuy
2016-07-05T08:09:47-07:00
Forum: Users
Topic: Specific Output Names when Using Convert
Replies: 6
Views: 4459

Re: Specific Output Names when Using Convert

It is generally not a good idea to use wildcards for both input and output. I'm a hack at best when it comes to writing scripts. I need to be able to drag and drop images onto the script with no additional input as others besides myself will be using this script. This is currently working well, not ...
by CrazyHomelessGuy
2016-07-05T07:57:00-07:00
Forum: Users
Topic: Specific Output Names when Using Convert
Replies: 6
Views: 4459

Re: Specific Output Names when Using Convert

Thanks. I found an easy way to do it... In this case I will always have 0 and 1 so I can just use a Window's Batch Script rename to accomplish what I want.

Code: Select all

convert  -crop 1x2@  +repage  +adjoin  %*  *.jpg
ren *-0.jpg *-L.jpg
ren *-1.jpg *-R.jpg
by CrazyHomelessGuy
2016-07-04T15:28:06-07:00
Forum: Users
Topic: Specific Output Names when Using Convert
Replies: 6
Views: 4459

Specific Output Names when Using Convert

I am splitting 3d stereoscopic images into 2 separate files. The code below works as I need it to but the output names for a test.jpg image are test-0.jpg and test-1.jpg. Is there an easy way to write the filenames as test-L.jpg and test-R.jpg? The L and R stand for Left and Right images for ...