summaryrefslogtreecommitdiffstats
path: root/Demo
Commit message (Collapse)AuthorAgeFilesLines
* Added fixps, fixcid.Guido van Rossum1993-06-141-0/+2
|
* Mostly cosmetics, e.g. change window titles so icon titles are better,Guido van Rossum1993-06-111-19/+25
| | | | size window back to last size when going from 24bits to 8bits mode, etc.
* Keep top left corner of window where it was when resizing.Guido van Rossum1993-06-111-5/+13
| | | | | | | Keep aspect and max size of window at all times. Remove (now unnecessary) sleep(0.1) in vcr capture code. Add messages when initializing VCR. Remove old comments.
* Fixed another place where set_rgbmode() should be called.Guido van Rossum1993-06-101-3/+13
| | | | Separated out colormap installation (for override by Glx widget).
* Impor VCR at the top. Change the way audio is recorded subtly.Guido van Rossum1993-06-101-3/+2
|
* VCR.py: Use unix files instead of stdio files for tty communication,Guido van Rossum1993-06-102-10/+151
| | | | | | | because of buffering. Also added several new commands (Jack). VFile.py: Made setting of RGB or colormap mode separate methods, so they can be overridden (e.g. when using the Glx.draw widget the way to change the mode is totally different).
* Added 24 bit RGB captureJack Jansen1993-06-082-24/+166
| | | | | | | Added JPEG capture Added multiple-speed VCR sync and single-step VCR sync VCR sync recorded movies get correct timestamps Added (still non-functional) 24-bit picture scaling
* Grab a 24-bit image off the StarterVideoJack Jansen1993-06-081-0/+97
|
* Added jpeg grabberJack Jansen1993-06-081-2/+4
|
* Newss class styleJack Jansen1993-06-081-1/+1
|
* Small imporvements, added mpz and md5 to list of modules,Guido van Rossum1993-06-051-10/+16
| | | | changed library list somewhat. CLOSE FILE "tmpconfig.c" AFTER WRITING!
* Initial revisionGuido van Rossum1993-06-051-0/+91
|
* Changed setpf so it understands old-style packfactorsJack Jansen1993-06-011-0/+2
|
* New class syntaxJack Jansen1993-05-251-1/+1
|
* Jack's VCR control moduleGuido van Rossum1993-05-121-0/+297
|
* Implemented VCR capture using forward slow instead of stepping.Guido van Rossum1993-05-112-26/+83
| | | | Also added a 'rate' field to specify the capture rate in this case.
* Disconnect from VCR when switching modes.Guido van Rossum1993-05-102-6/+52
| | | | | Wait for VCR ready and set VCR mode to DNR when initializing VCR. Fix type error in getfloat().
* Added single frame capturing.Guido van Rossum1993-05-102-270/+653
| | | | | | Added VCR synchronized capturing. Added audio capturing (for continuous mode only). Lots of internal and external improvements.
* Revived the old aplay tool which can play synchronous audio and video...Guido van Rossum1993-05-101-0/+167
|
* Moved stop button again; default form position next to video window.Guido van Rossum1993-05-072-111/+172
|
* All combinations of video format and capture mode (cont/burst) nowGuido van Rossum1993-05-071-85/+201
| | | | work. Reorganized a lot of the code, still not satisfied...
* Use groups to show/hide "Stop capture" button.Guido van Rossum1993-05-062-13/+85
| | | | | Made mono capture work. Don't support rgb24 capture (the code for this doesn't exist in Vrec either!).
* New program: Video Bag Of Tricks. Will eventually replace Vrec andGuido van Rossum1993-05-062-0/+570
| | | | Vrecb. Has a user interface dialog to set options etc.
* *** empty log message ***Guido van Rossum1993-04-014-4/+4
|
* Added freeze.py, methfix.pyGuido van Rossum1993-04-011-0/+2
|
* bin/pythonGuido van Rossum1993-04-014-4/+4
|
* MicrofixesGuido van Rossum1993-04-011-2/+2
|
* Initial revisionGuido van Rossum1993-04-011-0/+447
|
* Fixed watch cursor originGuido van Rossum1993-03-171-0/+1
|
* Added support for "compress" type video files. This uses theSjoerd Mullender1993-03-171-3/+26
| | | | Compression Library to decompress the images.
* Fix syntax error (sorry!)Guido van Rossum1993-03-021-1/+1
|
* Remove debug print statementGuido van Rossum1993-03-021-1/+0
|
* VFile: fix c0bits etc. after setformat; Vrec.py: use setformat; rm Makefile.Guido van Rossum1993-03-022-10/+27
|
* Vrec.py, Vrecb.py:Guido van Rossum1993-02-256-12/+201
| | | | | | | | | | | - call v.SetParam() after v.BindGLWindow() - turn of dithering in mono/grey mode - use prefposition to place the top left corner at (150, 150) (so that the video remains visible during recording) - default width is 256 Vcopy.py: correct typos; more verbose output. OldVcopy.py: new name for Jack's old grabbing Vcopy.py. Vstat.py: print values of all video parameters.
* Change Vinfo and Vaddcache to usr /ufs/guido/bin/sgi/python.Guido van Rossum1993-02-254-19/+14
| | | | | Don't force packfactor to 1 in header when writing rgb data. Small bugfixes in Vcopy.
* - Separated grabbing (which isn't used much!) from VFile.Guido van Rossum1993-02-255-306/+478
| | | | | | | | | | | | | - Renamed old Vcopy.py to OldVcopy.py, some cosmetic changes to it (is it still needed?) - Added new Vcopy.py which does everything that Vtime.py does but also format conversions, image scaling, and packfactors. - VFile: make packfactor always a tuple; introduce set and get methods for pf, format, and calculate some derived values. - Added new module GET.py to std library, use it instead of defining DM* in VFile. - Get rid of C programs (new Python programs can do all that they do and they probably don't understand the current file format anyway).
* Rewrite applypackfactor() using imageop: faster and more general;Guido van Rossum1993-02-251-27/+14
| | | | get rid of testpackfactor(): not longer necessary
* Fix typos in jpeg codeGuido van Rossum1993-02-251-4/+4
|
* Fix terse mode for printing tuple packfactor and to avoid zero divisionGuido van Rossum1993-02-251-6/+13
|
* Added audio recording to VrecbJack Jansen1993-02-241-6/+76
|
* Added jpeg conversionsGuido van Rossum1993-02-231-1/+26
|
* Will now generate converters that go thru intermedeate formatsJack Jansen1993-02-191-3/+81
|
* Bug fixed wrt greyscale conversionJack Jansen1993-02-191-1/+1
|
* Fix to allow tightly packed films to be convertedJack Jansen1993-02-191-1/+8
|
* The usual cosmetic changes after Jack is done...Guido van Rossum1993-02-182-5/+11
|
* DisplayVideoIn - Class similar to LiveVideoIn but sends data fromJack Jansen1993-02-172-0/+289
| | | | | screen Dsend - Main program analogous to Vsend to send data from display
* Added support for 24-bit rgb moviesJack Jansen1993-02-171-2/+8
|
* Moved line-size stuff to single routineJack Jansen1993-02-171-11/+15
|
* Companion to rgb2video: convert cmif film file to rgb filesJack Jansen1993-02-171-0/+165
|
* Cleanup of old files, added watchcursor.py (for Vedit.py), updated README.Guido van Rossum1993-02-162-3/+53
|