It's not specific for .NET but IM but since I'll use it in .NET I'll ask here:
I'm wondering if I'm able to convert to raw video format (raw frames) with IM, Ideally .y4m , to then convert to another format, Is this possible with IM?
Converting a image to Raw video format
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Converting a image to Raw video format
IM uses ffmpeg as delegate for reading and writing video. If ffmpeg supports .y4m, then so does IM.
snibgo's IM pages: im.snibgo.com
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Converting a image to Raw video format
IM contains no code to read or write video files (except animated GIF, if we can call that "video"). Instead, IM calls ffmpeg to do those jobs.
If you simply want to convert video from one format to another, IM is the wrong tool. I suggest you use ffmpeg directly.
If you simply want to convert video from one format to another, IM is the wrong tool. I suggest you use ffmpeg directly.
snibgo's IM pages: im.snibgo.com
Re: Converting a image to Raw video format
Yeah unfortunately I've already achieved this in FFmpeg but the FFmpeg licence doesn't allow us to use it in the project, so I'm looking at other alternatives.snibgo wrote: ↑2018-12-13T16:58:10-07:00 IM contains no code to read or write video files (except animated GIF, if we can call that "video"). Instead, IM calls ffmpeg to do those jobs.
If you simply want to convert video from one format to another, IM is the wrong tool. I suggest you use ffmpeg directly.