odoo 13 загружает видеофайлы через minio API Python

Я пытаюсь разработать модуль для загрузки видеофайлов через MinIO API Python.

Файл можно загрузить в MinIO, но его нельзя просматривать по URL-адресу вида: http://localhost:9000/lms-videos/video/output.mp4. А также файл, загружаемый через MinIO, должен быть 19,39 МБ, а файл, загруженный через API, оказывается 25+ МБ, не знаю, в чем причина.....

Ниже приведена часть моего кода:

# minio client
@api.model
def _get_minio_client(self):
    host = '192.168.1.102:9000'
    access_key = 'minioadmin'
    secret_key = 'minioadmin'
    if not all((host, access_key, secret_key)):
        raise exceptions.UserError('Incorrect configuration of MinIO')
    return Minio(
    host,
    access_key = access_key,
    secret_key = secret_key,
    secure = False
    )
# upload
@api.model
def _store_file_write(self):
    client = self._get_minio_client()
    bin_data = self.datas_minio
    fname = "output_test"
    #client.put_object('lms-videos','videos/'+ fname + '.mp4',io.BytesIO(self.datas_minio), len(bin_data),'video/mp4')
    with io.BytesIO(self.datas_minio) as bin_data_io:
        client.put_object('lms-videos',
                          'videos/'+ fname + '.mp4',
                          bin_data_io,
                          len(bin_data),
                          'video/mp4')

@api.depends('document_id', 'slide_type', 'mime_type', 'external_url')
def _compute_embed_code(self):
    res = super(Slide, self)._compute_embed_code()
    for record in self:
        if record.slide_type == 'miniovideo':
            
            self._store_file_write()
            
            content_url = 'http://localhost:9000/lms-videos/videos/' + record.name + '.mp4'
            record.embed_code = '<video class="miniovideo" controls controlsList="nodownload"><source src="' + content_url + '" type=MPEG-4/></video>'
        
@api.onchange('datas_minio')
def _on_change_datas(self):
    res = super(Slide, self)._on_change_datas()
    if self.datas_minio:
        #fname = self.datas_minio.decode("utf-8")
        #bin_data = self.datas_minio
        self._store_file_write()
        #self._get_minio_client().put_object('lms-videos', '/videos/'+ fname + '.mp4',io.BytesIO(bin_data), len(bin_data),'video/mp4')
    return res

person Janus    schedule 13.08.2020    source источник


Ответы (1)


Проблема устранена добавлением b64decode

@api.model
    def _store_file_write(self):
        client = self._get_minio_client()
        bin_data = base64.b64decode(self.datas_minio)
        fsize = len(bin_data)
        fname = "output_test"
       
        with io.BytesIO(bin_data) as bin_data_io:
            client.put_object('lms-videos',
                              #'videos/'+ fname + '.mp4',
                              'videos/output_test.mp4',
                              bin_data_io,
                              fsize,
                              'video/mp4')
person Janus    schedule 13.08.2020