scribd

Convert pdf, doc, ppt to html5 [closed]

三世轮回 提交于 2019-12-31 08:06:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I've googled (without any luck) for open source software that can convert doc, ppt, and pdf to HTML5. (Exactly what Scribd does) Are there open source equivalents to the type of conversion Scribd does? If anyone knows of a paid service, that would also work. Scribd has an API, but that's for use with the flash

How did scribd implement their 'fullscreen' mode?

对着背影说爱祢 提交于 2019-12-11 03:15:35
问题 The scribd fullscreen mode is pretty neat (example: http://www.scribd.com/doc/13161906/Java-Lab-Manual-With-Java-Installation-Guide?classic_ui=1). The advantage (for RIAs specifically) is that it doesn't (almost) completely disable the keyboard the way the 'default' fullscreen mode in Flash Player does. Seems to also work when embedded. How did they do it? 回答1: That example is not using full screen at all. What they consider "full screen" is simply maximizing the flash window to take up the

Convert pdf, doc, ppt to html5 [closed]

半世苍凉 提交于 2019-12-02 14:52:06
I've googled (without any luck) for open source software that can convert doc, ppt, and pdf to HTML5. (Exactly what Scribd does) Are there open source equivalents to the type of conversion Scribd does? If anyone knows of a paid service, that would also work. Scribd has an API , but that's for use with the flash viewer. Also, I would like to host my own content as I need further control over converted html document . You're unlikely to find a single offering that does all this, especially in the open source world. It's more likely that you'll end up relying on a mishmash of things, and may even

How to write Big files into Blobstore using experimental API?

余生长醉 提交于 2019-11-30 12:14:32
问题 I have dilemma.. I'm uploading files both in scribd store and blobstore using tipfy as framework. I have webform with action is not created by blobstore.create_upload_url (i'm just using url_for('myhandler')). I did it because if i'm using blobstore handler the POST response parsed and I cannot use normal python-scribd api to upload file into scribd store. Now I have working scribd saver: class UploadScribdHandler(RequestHandler, BlobstoreUploadMixin): def post(self): uploaded_file = self

How to write Big files into Blobstore using experimental API?

和自甴很熟 提交于 2019-11-30 02:13:02
I have dilemma.. I'm uploading files both in scribd store and blobstore using tipfy as framework. I have webform with action is not created by blobstore.create_upload_url (i'm just using url_for('myhandler')). I did it because if i'm using blobstore handler the POST response parsed and I cannot use normal python-scribd api to upload file into scribd store. Now I have working scribd saver: class UploadScribdHandler(RequestHandler, BlobstoreUploadMixin): def post(self): uploaded_file = self.request.files.get('upload_file') fname = uploaded_file.filename.strip() try: self.post_to_scribd(uploaded