If I want to use JMP for something other than statistics: For example, I downloaded several video clips from the Internet, got binaries, and how to combine these binaries with JSL and save them as one video file. For example, this video is formatted as mp4 Thanks Experts!
rr = "";
rs = "";
For( j = 1, j <= N Row( dt ), j++,
u = dt[j, "url"];
request = New HTTP Request( URL( u ), Method( "Get" ) );
rs = request << send;
rr = rr || rs ; //??
);
rr << Save video( "c:\3\test.mp4", "mp4" ); //??