vimeo/vimeo.py

Error uploading (55, 'SSL_write() returned SYSCALL, errno = 10053')

ammarax opened this issue · 1 comments

Hi, Upload is failing with message (55, 'SSL_write() returned SYSCALL, errno = 10053')

except vimeo.exceptions.VideoUploadFailure as e:
                print('Error uploading %s' % file_path)
                print('Server reported: %s: %s' % (e.status_code, e.message))

os -windows
python 2.7.9
vimeo,py 1.0.11

worked for me add chunk_size on upload request


config_file = os.path.dirname(os.path.realpath(__file__)) + '/config.json'
config = json.load(open(config_file))

v = vimeo.VimeoClient(
    token=config['access_token'],
    key=config['client_id'],
    secret=config['client_secret']
)

video_uri = vimeo.upload(
                    file_path,
                    data={
                        'name': request[Title], 
                        'description': request[Description],
                        'chunk_size': 512 * 1024
                    })