Omnimaga
Calculator Community => Other Calc-Related Projects and Ideas => TI-Nspire => Topic started by: deng4 on March 23, 2011, 08:07:24 pm
-
First of all this is in not the same video player as apcalc's nPlayer. I made this one during the last week in an attempt to achieve much higher levels of compression then other calculator video players The current version uses intraframe deflate compression and interframe RLE based change compression. Also interlaced videos are supported for even more compression. Overall this allows for about 7 sec/MB, but i have even more compressed video in the works. To generate video files I made a C# converter (will include in next release) of full color gifs to my more compressed format automatically. Currently the player can maintain a constant set fps which can theoretically be [1,100]. Each frame takes about 10ms (5 interlaced) to render. I would really like to know what you guys think and I will add more improvements soon.
(http://www.mediafire.com/imgbnc.php/4766e9a51a145695fb34ac08b651934b12d1c6cdc7ed63564008a1c05925d98c5g.jpg)
Download Here! (http://www.mediafire.com/file/ozsj0v3rf9chqz0/player.7z)
-
That looks really cool how you did an interlaced video format. I wonder if the quality would still be fine if the interlacing was done on every three lines instead of two.
-
Welcome to the forums deng4! This definitively looks pretty nice and clean. I'll have to try it soon, now that Ndless 2.0 is installed on my calc.
-
This looks awesome deng4! What's the max length/size of videos it takes?
-
Hmm, I bet interlacing would actually help with the lcd response time, too :D
-
This looks awesome deng4! What's the max length/size of videos it takes?
The frame count is saved as a 32bit integer so theoretically if you had enough memory internally or externally it can go on for hours without end. But, on an ordinary nspire 15mb is about the max which can store around 2.5 minutes. This number is assuming settings are at ~24fps interlaced, so that number can vary a little depending on quality.
-
Can we decrease the framerate? Because since the TI-Nspire LCD is very blurry, having a high framerate doesn't necessarily give much better results than a lower framerate. Past 15 frames per second, it starts being hard to see stuff sometimes, especially when grayscale is involved.
-
wow! that looks great! this is the kind of thing I would have liked to receive a pm regarding this about :P:
Have you seen any good news-worthy programs/events? If so, PM me with an article to be included in the next issue of CGPN!
I should write one. ;)
-
Can we decrease the framerate?
Yes, once i release the converter tool this will be as simple as adding one argument. It should be ready in a few days because im currently adding in actual codec support.
wow! that looks great! this is the kind of thing I would have liked to receive a pm regarding this about :P:
Have you seen any good news-worthy programs/events? If so, PM me with an article to be included in the next issue of CGPN!
I should write one. ;)
Yeah, sorry i didn't notice that. You are free to write whatever you like about it and or PM if you have any questions. Im currently tied up with some annoying XVID code, but ill be happy to help if needed.
-
That would be great. It's most likely gonna go on Omni front page news when finished too, even though it's not a game nor a game development utility.
Also I'm glad to read that we'll be able to change the framerate. :D
-
Did I just read XVID on the TI-Nspire ? . . . =^.^=
-
This would be funny if the Nspire supported Xvid, considering Xvid support doesn't come on all computers by default. XD (You have to install the Xvid codec in some cases)
I wonder how many codecs will be supported?
-
Did I just read XVID on the TI-Nspire ? . . . =^.^=
It is still very very experimental but MIGHT actually work in witch case no other codecs would really be needed due to its supper performance. Its not really that hard because xvid is completely open source in C.
-
Would we be able to convert other type of formats such as h.263/4 or even Fraps? Or would we still need to use a software that supports Xvid conversion?
And it's nice that Xvid is open-source. :D
-
We have a nspire forge where cool nspire and projects are hosted. we have svn/git and trac (bugs, downloads, etc).
would you like a dedicated space?
just visit: http://nspforge.unsads.com
-
We have a nspire forge where cool nspire and projects are hosted. we have svn/git and trac (bugs, downloads, etc).
would you like a dedicated space?
just visit: http://nspforge.unsads.com
Oh yeah, the video player could be there too :D
-
Would we be able to convert other type of formats such as h.263/4 or even Fraps? Or would we still need to use a software that supports Xvid conversion?
The library im using supports h.263/4 and a whole lot of others. As for Fraps, never even heard of it so No. Some level of conversion will be needed any way, because holding full color, audio interwoven data etc. on an nspire would be stupid and space consuming. So in some cases conversion will be more like data stripping.
would you like a dedicated space?
Sure, maybe when I actually have something to release.
-
Also, what about the C# video converter, is it Windows-only?
-
Also, what about the C# video converter, is it Windows-only?
Technically C# can be used in linux via Mono. Also it will probably be redone in C/C++ to work with the encoders faster.