I am using web2py for my college project.
I have managed to upload a video into my database (by uploading it into 'uploads files').
But the problem is I don't know how to access that uploaded video afterwards.
Can someone explain me how can I access a video after it has been uploaded?
The intention is that user can see their videos and download them.
db.define_table('product',Field('TITLE',requires=IS_NOT_EMPTY()),
Field('OWNER_ID','reference auth_user',readable=False,),
Field('Video','upload'),
Field('DESCRIPTION','text'),
Field('times','datetime'),
Field('RATE')
)