balintlaczko / MGT-python

Musical Gestures Toolbox for Python
https://www.uio.no/ritmo/english/research/labs/fourms/downloads/software/musicalgesturestoolbox/mgt-python/index.html
GNU General Public License v3.0
1 stars 0 forks source link

If not providing a filename for video rendering functions, always use the latest self.filename of the corresponding object #16

Closed balintlaczko closed 4 years ago

balintlaczko commented 4 years ago

Would make everyday use much simpler.

I imagine it as something like this:

lala = mgmodule.MgObject('lala.avi', etc.......) it does all the processes like trim, skip, contrast-brightness, crop, and results in 1 video in the folder which is named 'lala_trim_skip_cb_crop.avi' ...and now I just say: lala.motionvideo() or lala.history() or lala.motionhistory() or just lala.show() and so on... In each case, since I haven't specified an input file, it will automatically use 'lala_trim_skip_cb_crop.avi'.

balintlaczko commented 4 years ago

Done!