veyepar icon indicating copy to clipboard operation
veyepar copied to clipboard

Video Eyeball Processor and Review

Results 10 veyepar issues
Sort by recently updated
recently updated
newest added

It is possible to create a YouTube playlist with duplicate entries. It appears Veyepar-generated YouTube playlists adds the same video multiple times to the same playlist. One can work around...

Running any veyepar script from the LCA2020 server (exactly the same virtualenv) from several laptops which aren't Carl's results in the following: ```(venv) videoteam@gw:~/veyepar/dj/scripts$ python review_2.py Traceback (most recent call...

CLIENT_SECRETS_FILE = "client_secrets.json" https://github.com/CarlFK/veyepar/blob/master/dj/lib/youtube_v3_uploader.py#L76 where should that file go?

veyepar.cfg supports: upload-formats=mp4 webm which gets split() into a list: self.options.upload_formats = self.options.upload_formats.split() the ini format doesn't support lists: "always storing them internally as strings" https://docs.python.org/3/library/configparser.html#supported-datatypes so to get rid...

When a problem is found with an uploaded file, fixed and re-encoded, the default is to skip uploading the new file to avoid deleting accidentally. this gives everyone a headache.

It would be nice if the upload speed could be throttled, ideally from a setting within veyepar.cfg that gets polled periodically during the upload so that speed can be adjusted...

I would like to request that more values for volume management be made available as flags for enc.py, Reading the volume section in http://www.mltframework.org/twiki/bin/view/MLT/Services I believe that the following would...

From discussion on IRC... https://logs.timvideos.us/%23timvideos/%23timvideos.2016-08-24.log.html#t2016-08-24T06:21:59 > @mithro CarlFK: You should OCR the recorded video looking for things which look like URLs and then convert them to YouTube annotations so I...

This should be ready in time for DebConf. The goal is to have documentation for volunteers who review videos at least on par with documentation like DebConf has here: https://wiki.debconf.org/wiki/Videoteam/Review

Using the $accesskey:$secret from http://archive.org/account/s3.php curl -v \ --location \ --header 'x-archive-meta-collection:test_collection' \ --header 'x-amz-auto-make-bucket:1' \ --header 'x-archive-meta-mediatype:movies' \ --header 'x-archive-meta-title:test' \ --header "authorization: LOW $accesskey:$secret" \ --upload-file ~/Videos/veyepar/test_client/test_show/mp4/Lets_make_a_Test.mp4 \...