Ticket #636 (closed defect: invalid)
FTP uploads don't get picked up by transcoder
| Reported by: | and | Owned by: | |
|---|---|---|---|
| Priority: | blocker | Milestone: | 4.8 |
| Component: | Transcoding | Severity: | New Ticket |
| Keywords: | Cc: | ||
| Who will test this: | And |
Description (last modified by and) (diff)
I have done 3/4 tests on EngageMedia.org. Through the web uploads seem to be OK but ones from FTP don't seem to hit the transcoder.
Moving down the line.
Attachments
Change History
comment:1 Changed 2 years ago by dimo
- Milestone changed from 4.2 Beta to 4.5 Beta (Language Related New Features and Fixes)
comment:2 Changed 2 years ago by and
- Milestone changed from 4.4 Beta (Language Related New Features and Fixes) to 4.5 Beta Refactoring
comment:3 Changed 17 months ago by and
- Status changed from new to closed
- Resolution set to ready for testing
AFAIK no longer an issue but moving to ready for testing for anna to check out.
comment:4 Changed 16 months ago by anna
- Status changed from closed to reopened
- Resolution ready for testing deleted
Well the videos seem to get picked up, but there is a problem with the transcoded images. They seem to be generated, and the videos play back in the video view page, but the images don't show up in listings. See attached screenshot.
comment:5 Changed 16 months ago by anna
That was for this video: https://www.engagemedia.org/Members/anna/videos/PEACHES-trim4.mov/
comment:7 Changed 16 months ago by dimo
- Type changed from task to defect
The initial problem has not been solved in Plumi, we just implemented a workaround for em.org. I think it should be a high priority to fix both the original issue and the one reported by Anna above, but it might require more time than what we have left in this iteration.


A quick and ugly workaround was implemented in engagemedia.org.
I edited the file xmlrpc.py in collective.transcoded.daemon and added the following code in line 96:
### UGLY PATCH for em.org !!! input['url'] = input['url'].replace('http://localhost:9021/Zope2/plumi','https://www.engagemedia.org') callbackURL = callbackURL.replace('http://localhost:9021/Zope2/plumi','https://www.engagemedia.org') ### /UGLY PATCH for em.org !!!We obviously need to find a better solution in the future.