- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How can merge such binaries with JSL?
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" ); //??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How can merge such binaries with JSL?
You might want to use FFmpeg. Make a Video in JMP with FFmpeg ABC Music Video
I believe RunProgram+FFmpeg will let JSL read and write a video, frame-by-frame.
By the time you figure out how to make it all work, you'll probably be able to make FFmpeg join two videos without JMP. If you don't need to see the images in JSL, there is no reason to use JSL.
FFmpeg has an enormously complicated command line. And a legal agreement that might make it not an option for some people.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content