I've been working on a video project for a while, and finally ran into a wall with VLC. VLC is the best video player. It can also be used as a video generation tool, but has some quirks related to FPS of the output files. I decided to re-investigate FFmpeg as a replacement. I'd used FFmpeg a long time ago, without really reading all the docs and remembered it being complicated. Well, it is. I spent today reading the docs. It is a command line tool with tons of doc (see link). I put this together as a proof-of-concept. There's a lot more it can do.
The JSL below consists of a user defined function that generates images for a video sequence and a RunProgram call that runs FFmpeg to make a video. FFmpeg is told to get images via stdin, and RunProgram provides them by calling the user defined function. I have only run it on Windows, but I believe it will only take some minor changes to make it run on Mac as well.
To run it, you'll need to download FFmpeg. Their website points to another site you can get it from. I'm not sure why they don't have an official windows version. Once installed, this script will run in about 30 seconds to make an 8-second video, then open the video in your default player. It will look better in VLC, or you can upload it to youtube and see it like this:
Read the legal stuff carefully if you are going to do commercial work with it.
outputmp4 = ConvertFilePath("$desktop/VideoMadeByJMPandFFMPEG.mp4", "windows");
nrows = 1080 / 2;
ncols = 1920 / 2;
Open Log( 1 );
imagex = J( nrows, ncols, RGB Color( 1, 1, 1 ) );
musicCredit = Text Box(
"\!"Pump Sting\!" Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 4.0 License
http://creativecommons.org/licenses/by/4.0/
"||char(asdate(today())),
<<setwrap( ncols ),
<<backgroundcolor( RGB Color( 1, 1, 1 ) ),
<<setfontsize( 16 ),
<<fontcolor( "black" )
);
creditPixels = (musicCredit << getpicture) << getpixels;
imagex[(N Rows( imagex ) - N Rows( creditPixels ) + 1) :: (N Rows( imagex )), (1 + 20) :: (20 + N Cols( creditPixels ))] = creditPixels;
nn = 0;
getNextImage = Function( {},
If( nn <= 255,
Try(
imagex[
Interpolate( nn, 0, 1, 256, nrows ) :: Interpolate( nn + 1, 0, 1, 256, nrows ),
Interpolate( nn, 0, 1, 256, ncols ) :: Interpolate( nn + 1, 0, 1, 256, ncols )
] = HLS Color( nn / 256, .5, 1 );
nn += 1;
Matrix To Blob( -imagex, "int", 4, "big" );
,
Show( exception_msg );
Empty();
)
,
Empty()
)
);
start = Tick Seconds();
rp = Run Program(
executable( "C:\Users\v1\Desktop\ffmpeg-20200626-7447045-win64-static\bin\ffmpeg.exe" ),
options(
{
"-y",
"-f", "rawvideo",
"-vcodec", "rawvideo",
"-s", Eval Insert( "^ncols^X^nrows^" ),
"-pix_fmt", "argb",
"-r", "20",
"-i", "-",
"-i", "https://incompetech.com/music/royalty-free/mp3-royaltyfree/Pump%20Sting.mp3",
"-vcodec", "mpeg4",
"-b:v", "5000k",
outputmp4
}
),
WriteFunction(
Function( {this},
data = getNextImage();
If( Is Empty( data ),
this << writeEOF;
,
this << Write( data );
);
)
),
ReadFunction(
Function( {this},
While( rp << canread,
Write( this << read );
Wait( .01 );
)
)
)
);
While( !(rp << isreadeof), Wait( .01 ) );
stop = Tick Seconds();
Write( "\!ndone, used ", Char( stop - start, 7, 1 ), " seconds" );
open(outputmp4);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.