{ "info": { "author": "Raptus AG", "author_email": "dev@raptus.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Introduction\n============\n\nraptus.article.media provides audio and video support for Articles.\n\nThe following features for raptus.article are provided by this package:\n\nContent\n-------\n * Audio - Based on File - add your audio files in a article.\n * Video - Based on File - add your video files in a article.\n * VideoEmbed - Based on Link - add your reference to your video in a article.\n \nComponents\n----------\n * Audio (List of the audio files contained in the article)\n * Video (List of the video files contained in the article)\n\nDependencies\n------------\n * collective.flowplayer\n * Products.ContentTypeValidator\n * raptus.article.core\n * plone.app.imaging\n\nInstallation\n============\n\nTo install raptus.article.media into your Plone instance, locate the file\nbuildout.cfg in the root of your Plone instance directory on the file system,\nand open it in a text editor.\n\nAdd the actual raptus.article.media add-on to the \"eggs\" section of\nbuildout.cfg. Look for the section that looks like this::\n\n eggs =\n Plone\n\nThis section might have additional lines if you have other add-ons already\ninstalled. Just add the raptus.article.media on a separate line, like this::\n\n eggs =\n Plone\n raptus.article.media\n\nNote that you have to run buildout like this::\n\n $ bin/buildout\n\nThen go to the \"Add-ons\" control panel in Plone as an administrator, and\ninstall or reinstall the \"raptus.article.default\" product.\n\nNote that if you do not use the raptus.article.default package you have to\ninclude the zcml of raptus.article.media either by adding it\nto the zcml list in your buildout or by including it in another package's\nconfigure.zcml.\n\nPlone 3 compatibility\n---------------------\n\nThis packages requires plone.app.imaging which requires two pins in buildout\nwhen using Plone 3, which there are::\n\n Products.Archetypes = 1.5.16\n plone.scale = 1.2\n\n\nMigration\n=========\n\nBlob-storage\n------------\n\ncall this view on myplone/@@blob-article-media-migration and run the migration.\nall teaser have a separate view at myplone/@@blob-article-teaser-migration.\n\n\nUsage\n=====\n\nAdd video/audio\n---------------\nYou may now add videos, embedded videos and audio file in your article. \nClick the \"Add new\" menu and select \"Video\", \"Embedded video\" or \"Audio\" in the pull down menu.\nYou get the standard plone form to add your video, embedded video or audio file. \n\nComponents\n----------\nNavigate to the \"Components\" tab of your article, select the video or audio component\nand press \"save and view\". Note that at least one video or audio file has to be contained\nin the article in which this component is active.\n\nSupported media types\n=====================\n\nAudio\n-----\n\n* audio/mpeg\n* audio/x-mp3\n* audio/x-mpeg\n* audio/mp3\n\nVideo embed\n-----------\n\n* YouTube\n* GoogleVideo\n* Vimeo\n* MyVideo\n\nVideo\n-----\n\n* video/x-flv\n* application/x-flash-video\n* flv-application/octet-stream\n* video/flv\n* video/mp4\n* video/mp4v-es\n* video/x-m4v\n\nSupporting additional video formats\n-----------------------------------\n\nTo extend the supported video formats with\n\n* video/x-avi\n* video/x-msvideo\n* video/x-ms-wmv\n* video/quicktime\n\ninclude stxnext.transform.avi2flv in your buildout and reinstall \nraptus.article.media.\n\nGo to `http://pypi.python.org/pypi/stxnext.transform.avi2flv \n`_ to read\nmore about the server side requirements of stxnext.transform.avi2flv.\n\nCopyright and credits\n=====================\n\nraptus.article is copyrighted by `Raptus AG `_ and licensed under the GPL. \nSee LICENSE.txt for details.\n\nDeveloper Manual\n================\n\nNote: You find a developer manual for raptus.article at \n`raptus.article.core `_.\nPlease have look there if you need more information.\n\nCode overview\n=============\n\nComponents\n----------\n\nplone.abovecontentbody\n``````````````````````\n- raptus.article.media.video\n- raptus.article.media.audio\n\nInterfaces\n----------\n\nfile: interfaces.py\n```````````````````\n- IVideos (Provider for video files and embedded ones contained in an article)\n - getVideos - method (Returns a list of video files and embedded ones (catalog brains))\n\n- ITeaser (Handler for image thumbing of videos)\n - getTeaserURL - method (Returns the url to the teaser image in the specific size.\n The sizes are taken from the raptus_article properties sheet and are formed by the \n following name schema: media__(height|width)\n - getTeaser - method (Returns the html tag of the teaser image in the specific size. The sizes are \n taken from the raptus_article properties sheet and are formed by the following name schema:\n media__(height|width)\n - getSize - method (Returns the width and height registered for the specific size)\n\n- IVideo (Marker interface for the video content type)\n \n- IVideoEmbed (Marker interface for the video embed content type)\n \n- IVideoEmbedder (Provides html for different video providers)\n - matches - method (Whether the embeder matches the adapted obj or not)\n - getEmbedCode - method (Returns the html)\n\n- IAudios (Provider for audio files contained in an article)\n - getAudios - method (Returns a list of audio files (catalog brains))\n\n- IAudio (Marker interface for the audio content type)\n\nChangelog\n=========\n\n2.0b12 (2013-07-03)\n-------------------\n\n* Added new configuration option to enable/disable media links\n* Added new configuration option to enable/disable audio titles\n\n\n2.0b11 (2013-06-24)\n-------------------\n\n* Fixed bad release\n\n\n2.0b10 (2013-06-24)\n-------------------\n\n* Added https support\n\n2.0b9 (2012-01-23)\n------------------\n\n* fixed missing url parameter for article viewlet\n\n2.0b8 (2012-01-23)\n------------------\n\n* Added support for YouTube short URLs\n\n2.0b7 (2011-08-26)\n------------------\n\n* Added MyVideo embedding support\n\n2.0b6 (2011-02-22)\n------------------\n\n* add blob storage migration @@blob-article-media-migration\n\n2.0b5 (2010-11-10)\n------------------\n\n* Added French translations\n\n2.0b4 (2010-10-21)\n------------------\n\n* Updated readme and manual\n\n2.0b3 (2010-10-20)\n------------------\n\n* First public release", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Raptus/raptus.article.media", "keywords": "", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "raptus.article.media", "package_url": "https://pypi.org/project/raptus.article.media/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/raptus.article.media/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/Raptus/raptus.article.media" }, "release_url": "https://pypi.org/project/raptus.article.media/2.0b12/", "requires_dist": null, "requires_python": null, "summary": "Provides audio and video support for articles.", "version": "2.0b12" }, "last_serial": 806853, "releases": { "2.0b10": [ { "comment_text": "", "digests": { "md5": "4c4c34694f86647304f2ebc739e6d9a1", "sha256": "83622897a50204e505452db5400adf35aeb2b536245fbe27fd2d19af05156e08" }, "downloads": -1, "filename": "raptus.article.media-2.0b10.zip", "has_sig": false, "md5_digest": "4c4c34694f86647304f2ebc739e6d9a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55969, "upload_time": "2013-06-24T07:10:06", "url": "https://files.pythonhosted.org/packages/8a/31/5e39387b1f3b2b4ca289bd999ee4f7a3034509d4b4416f0ce2b1322ae336/raptus.article.media-2.0b10.zip" } ], "2.0b11": [ { "comment_text": "", "digests": { "md5": "bff1a1c742d105f90d969c1aedb2240a", "sha256": "677fcb14490ce38ceea7dc97ca5590586902c778505000af254929e293ccf5b1" }, "downloads": -1, "filename": "raptus.article.media-2.0b11.zip", "has_sig": false, "md5_digest": "bff1a1c742d105f90d969c1aedb2240a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56003, "upload_time": "2013-06-24T07:13:09", "url": "https://files.pythonhosted.org/packages/f6/3a/980f278136b1bb800fa7e68a5f2d0d6ccff518c1e2a233d6a714a81cdf4a/raptus.article.media-2.0b11.zip" } ], "2.0b12": [ { "comment_text": "", "digests": { "md5": "e42c71108ae7d5783ee7a095527c977b", "sha256": "0f3d411238d733b58ce5f864b818c3defbeb924be43470b2d7c46469d288f3ba" }, "downloads": -1, "filename": "raptus.article.media-2.0b12.zip", "has_sig": false, "md5_digest": "e42c71108ae7d5783ee7a095527c977b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56340, "upload_time": "2013-07-03T09:09:02", "url": "https://files.pythonhosted.org/packages/ed/9b/a9f27bc98395604dfef7c5938041cb7c87e9bf21764883d55968b181861e/raptus.article.media-2.0b12.zip" } ], "2.0b3": [ { "comment_text": "", "digests": { "md5": "5d875ea8b3b9111b04c7081669caf5a0", "sha256": "90221d12649b1167a286852ecc0ade4cfefb60e4f65e53f3505db009803f130c" }, "downloads": -1, "filename": "raptus.article.media-2.0b3.tar.gz", "has_sig": false, "md5_digest": "5d875ea8b3b9111b04c7081669caf5a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27650, "upload_time": "2010-10-20T16:17:01", "url": "https://files.pythonhosted.org/packages/01/37/c03366031b416a125efc86d95985aa25da7ae3478d8f8b00316f09aa5545/raptus.article.media-2.0b3.tar.gz" } ], "2.0b4": [ { "comment_text": "", "digests": { "md5": "50edf8a9d22de0645ea2016a50bf7cde", "sha256": "9726af7b978a2cfbcfb99f406eb5d92494e160c2a2f3f49e779e372ff5c442ed" }, "downloads": -1, "filename": "raptus.article.media-2.0b4.tar.gz", "has_sig": false, "md5_digest": "50edf8a9d22de0645ea2016a50bf7cde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27589, "upload_time": "2010-10-21T16:21:39", "url": "https://files.pythonhosted.org/packages/22/b8/5878b7db7855e740e8e6f9b3232da07d8a19daf67200093035db94695a69/raptus.article.media-2.0b4.tar.gz" } ], "2.0b5": [ { "comment_text": "", "digests": { "md5": "5a3ff6c6e32a1db7858e8bacf908f912", "sha256": "69669c8bcfa66a4f88efd83db4a17ec229de27097a1e250324498e790b407bff" }, "downloads": -1, "filename": "raptus.article.media-2.0b5.tar.gz", "has_sig": false, "md5_digest": "5a3ff6c6e32a1db7858e8bacf908f912", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27909, "upload_time": "2010-11-10T11:49:58", "url": "https://files.pythonhosted.org/packages/69/87/17cb763b2df6895c050bb9b787eddd365c830531b2e0ba1f1885b065d188/raptus.article.media-2.0b5.tar.gz" } ], "2.0b6": [ { "comment_text": "", "digests": { "md5": "6a7dd7ebc54d7d2e31854f59d9a0cb71", "sha256": "33657ba87d9e0cca79acdcacb8966581b2701cc2656d070dcae2efc35e56a061" }, "downloads": -1, "filename": "raptus.article.media-2.0b6.tar.gz", "has_sig": false, "md5_digest": "6a7dd7ebc54d7d2e31854f59d9a0cb71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27471, "upload_time": "2011-02-22T15:26:07", "url": "https://files.pythonhosted.org/packages/23/0d/ff6ac87d1c30ced69b9d8f076718cfe9a7c670711829d6b1b3c95bf83280/raptus.article.media-2.0b6.tar.gz" } ], "2.0b7": [ { "comment_text": "", "digests": { "md5": "1500bdd1dbfd6fdf70f308a04a70cf83", "sha256": "5ab2504630924a1005fb21b6a345e7cd45de72e3fbf71b6a294ed81e5a9b3a99" }, "downloads": -1, "filename": "raptus.article.media-2.0b7.tar.gz", "has_sig": false, "md5_digest": "1500bdd1dbfd6fdf70f308a04a70cf83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29520, "upload_time": "2011-08-26T15:37:22", "url": "https://files.pythonhosted.org/packages/a5/6d/ff59535fcd768629822546fd353566ea6ac6c24a8316119e0e83246405db/raptus.article.media-2.0b7.tar.gz" } ], "2.0b8": [ { "comment_text": "", "digests": { "md5": "a31a626331ab3f5bcd748de8890e5a9d", "sha256": "f132bf2fd6995f5d9ba315ba67c87857b23239c44d5f8f1b911fe8dfcce691df" }, "downloads": -1, "filename": "raptus.article.media-2.0b8.tar.gz", "has_sig": false, "md5_digest": "a31a626331ab3f5bcd748de8890e5a9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30337, "upload_time": "2012-01-23T12:19:11", "url": "https://files.pythonhosted.org/packages/eb/da/860f1594b146bedd6b2477673bfb1d2d527965ac07efc1b6912418bdeae0/raptus.article.media-2.0b8.tar.gz" } ], "2.0b9": [ { "comment_text": "", "digests": { "md5": "e08fdff37e44cb62828aeba16df629a2", "sha256": "f6e500afc5729adebe7f04d85d182f1d9f276be8e7214b3012b007e92caafe09" }, "downloads": -1, "filename": "raptus.article.media-2.0b9.tar.gz", "has_sig": false, "md5_digest": "e08fdff37e44cb62828aeba16df629a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28664, "upload_time": "2012-01-23T17:35:25", "url": "https://files.pythonhosted.org/packages/a2/f0/852bd1c708fee0485b14fa196771232d7ac1ba71365a45b5a773701cd6f1/raptus.article.media-2.0b9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e42c71108ae7d5783ee7a095527c977b", "sha256": "0f3d411238d733b58ce5f864b818c3defbeb924be43470b2d7c46469d288f3ba" }, "downloads": -1, "filename": "raptus.article.media-2.0b12.zip", "has_sig": false, "md5_digest": "e42c71108ae7d5783ee7a095527c977b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56340, "upload_time": "2013-07-03T09:09:02", "url": "https://files.pythonhosted.org/packages/ed/9b/a9f27bc98395604dfef7c5938041cb7c87e9bf21764883d55968b181861e/raptus.article.media-2.0b12.zip" } ] }