Search found 158 matches

by Rye
2013-10-20T14:56:29-07:00
Forum: Users
Topic: Convert gray content of gray/white image to black ?
Replies: 9
Views: 10962

Convert gray content of gray/white image to black ?

Well, let's say I have this picture: https://dl.dropboxusercontent.com/u/14586156/Z_Root/Clipboard01.png Let's assume I want to change all the gray color in this picture to plain black. Is there a command to have imagemagick change all grey of this image (preferableby using grey [Hex: C8C8C8] to bla...
by Rye
2013-08-19T04:30:31-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

Well even if I use this command (modified bitrate):

Code: Select all

ffmpeg -r 30 -b 2931 -i c%d.png test.avi
I still get a avi file with horrible quality. Not being comparable to the source stills used.
by Rye
2013-08-18T10:35:16-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

So… how do I have to change this code:

Code: Select all

ffmpeg -r 25 -b 2000 -i c%d.png combined.avi
in order to achieve higher bitrate ?

Since the pictures used right "before" the merge are crisp.
by Rye
2013-08-18T09:41:43-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

By doubled you mean "put side by side ?"

What setting needs to be changed in order to get the picture nonblurry ?
by Rye
2013-08-18T08:26:07-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

DELETE ME
by Rye
2013-08-18T08:19:05-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

video 1 Birate: 2931 kBit/s (.avi) (1652kBit/s according to FFMPEG, rgb24 instead of yuv420p according to FFMPEG)
video 2 Bitrate: 2931 kBit/s (.avi) (1100KBit/s according to FFMPEG, rgb24 instead of yuv420p according to FFMPEG)

combined Bitrate 200 kBit/s... (.avi)
by Rye
2013-08-18T08:17:30-07:00
Forum: Users
Topic: How to crop this image so only the middle part remains ?
Replies: 6
Views: 3783

Re: How to crop this image so only the middle part remains ?

These didn't come out like I wanted (a small border remains): [spoiler] https://dl.dropboxusercontent.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/Rm_blck_border_from_image/orig.png https://dl.dropboxusercontent.com/u/14586156/stuff/0_PC_Prog_Dev_support/ImageMagick/Rm_blck_border_from_ima...
by Rye
2013-08-18T06:14:26-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

So far so good.

However the end result looks really blurry and pixelated while the end frames "c" look much more crisp ?

Is there anyhting that can be done to help that ?
by Rye
2013-08-18T04:55:50-07:00
Forum: Users
Topic: How to crop this image so only the middle part remains ?
Replies: 6
Views: 3783

Re: How to crop this image so only the middle part remains ?

Ok, trim actually "is" simple enough. Always dazzles me how ImageMagick simplyfies thes processes
by Rye
2013-08-18T03:46:46-07:00
Forum: Users
Topic: How to crop this image so only the middle part remains ?
Replies: 6
Views: 3783

Re: How to crop this image so only the middle part remains ?

I want to crop the picture so only the white area remains.

As simple as possible.

Would be best if the command could be used on all png's in one folder (batch).
by Rye
2013-08-18T03:20:38-07:00
Forum: Users
Topic: How to crop this image so only the middle part remains ?
Replies: 6
Views: 3783

How to crop this image so only the middle part remains ?

Example:

Image

Would be nice to also get an explanation.


Thanks in advance
by Rye
2013-08-17T04:49:52-07:00
Forum: Users
Topic: Resize all images with specific res in folder
Replies: 2
Views: 2399

Re: Resize all images with specific res in folder

I seem to have trouble understanding this one.

Lets say I have 1 png in the same folder with said resolution.

What do I have to add to your script in order for it to work (as it seems to do nothing as of yet... maybe I have to adjust the SRC ?)
by Rye
2013-08-17T03:41:19-07:00
Forum: Users
Topic: Resize all images with specific res in folder
Replies: 2
Views: 2399

Resize all images with specific res in folder

So let's say I have about 4000~+ images in a folder, all of different resolutions. The task now is to: 1. Find all images with resolution of 256x384 inside the current folder 2. Resize them to 322x480 (if you are fixed on certain image type, let's assume png is the one for the sake of argument) Is t...
by Rye
2013-08-17T01:21:21-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

However if you don't know the frame number ?

How about reading it from the video and saving it to a variable ?
by Rye
2013-08-16T19:01:29-07:00
Forum: Users
Topic: Merge Videos Side-by-Side
Replies: 23
Views: 20633

Re: Merge Videos Side-by-Side

How do I have to modify this line: for n in $(seq 1 1 500) in order for this to automatically process all frames of the video ? Also: If I have two videos with different framecount - for example they differ by 18 frames. Is there a way to compensate for this. This script actually works. I tried it. ...