
Recherche avancée
Autres articles (57)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (3868)
-
Is it possibel extract thumbnails and save them on website using youtube video. (by front-end users)
24 octobre 2013, par Jaewook KohI read blog about print youtube video on "http://www.labnol.org/internet/print-youtube-video/28217/".
I have a self-hosted video site.
But video hosting makes too many traffic.
So I decideed another plan for site.
It's to generate thumbnails of external video. Is it possible ?
I found making thumbnails using ffmpeg, but there are a lot of videos in external platform(Like Youtube, Vimeo, etc)
After I saw Amit Agarwal's blog("print youtube video"), I was very impressed.
Anyway if it is impossible, I should find another way.
Thanks-
-
PHP extension writing
19 octobre 2013, par Mikko Koppanen — ImagickI’ve written quite a few PHP extensions over the past years and thought that I could share some of the experience with larger community. PHP internals can be a bit scary at times and in the past I’ve scoured through a lot of extensions to find practical examples of things such as how to return objects from internal functions/methods, how to handle different types of parameters, class properties etc.
To document some of the experiences I started a project called extsample, in which I plan to add practical examples related to extension writing. There won’t be extensive written documentation outside the code, but hopefully the code itself contains enough nuggets of information to be useful. As the README says, if you need a specific example or clarification on something just open an issue in Github.
The project is still very fresh but hopefully soon it will contain more examples. Pull requests are also welcome if you have code that you want to share with others.
-
A few questions about running a video gallery site
30 septembre 2013, par Kevin Kevinzmy site is going to be hosting a lot of videos. I'm using FFMPEG for all video functions. My current video upload plan is as follows :
-get input video
make video thumbnail
if its mp4/flv, convert it to ogv (for opera support)
if its not mp4/flv, convert it to mp4 and also convert the original to ogv
(the file conversions are running in the background)
I'm using jwPlayer 6 for all videos currently. What can I do to maximize cross-browser and cross-platform support ? iOS won't run flv because it can't run flash, so is it worth it to just convert every file to MP4 ? And what about HTML5 video ? Should I consider HTML5 as my primary player and jwPlayer my fallback ?
Thanks everyone.