08-29-2018 03:51 AM
Now, I am studying avi compress with some models, but results are not perfect. I want to collect video for hours with labview, yet the limition that 1.96G makes me not move. who has good ideal to deal with the promble.
08-30-2018 07:25 AM
1) If I remember correctly, the legacy AVI libraries allow larger filesizes (using filters not codecs)
2) Are you saving grayscale AVIs or RGB? (Check for real - some versions of AVI2.llb are buggy and save U8 with 32 bit. That bug was resolved and later reintroduced.)
3) Why would you use one gigantic file? I don't see many use-cases (and certainly not with AVIs) where that would be a hard requirement. Use a producer-consumer pattern. Stream images to a queue. Maybe even a TDMS. Process/compress in parallel. Merge files later / in the background... using VLC command line or something similar..
4) Why AVI? Why a video? What are your performance requirements? What exactly are you trying to do..?