Now make gifv with a script that changes the audio effects over time.
Show HN: Audioshop – Audio image editing
11–20 of 48 posts
Re: Show HN: Audioshop – Audio image editing
#12You can use Audacity to open and edit images using musical effects too (and sometime destroy image metadata)
Re: Show HN: Audioshop – Audio image editing
#13I always love glitchart, this is pretty rad. Good job!
I just added video support.
Working on audio support now.
Re: Show HN: Audioshop – Audio image editing
#14I just finished adding video support (and stubbed out audio support).
Due to already using ffmpeg for image manipulations, this turned out to be rather easy.
Give it a try using something like this:
$ ./mangle.sh in.mp4 out.mp4 --color-format=yuv444p --bits=8 --blend=0.4 overdrive 17 hilbert -n 5001Re: Show HN: Audioshop – Audio image editing
#15Hi HN, I just finished adding video support (and stubbed out audio support). Due to already using ffmpeg for image manipulations, this turned out to be rather easy. Give it a try using something like this: $ ./mangle.sh in.mp4 out.mp4 --color-format=yuv444p --bits=8 --blend=0.4 overdrive 17 hilbert -n 5001
Re: Show HN: Audioshop – Audio image editing
#16Hi HN, I just finished adding video support (and stubbed out audio support). Due to already using ffmpeg for image manipulations, this turned out to be rather easy. Give it a try using something like this: $ ./mangle.sh in.mp4 out.mp4 --color-format=yuv444p --bits=8 --blend=0.4 overdrive 17 hilbert -n 5001
A round of applause http://i.imgur.com/jJMwl2u.gif
Re: Show HN: Audioshop – Audio image editing
#17Re: Show HN: Audioshop – Audio image editing
#18Might be interesting to experiment with different mappings of pixel location to audio sample number, rather than just having a row by row linear scan from corner to corner.
Right now I've mostly been exploring YUV and RGB colorspace in either packed or planar formats.