
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (7404)
-
Is there a "legal" review of FFmpeg contributions ?
20 septembre 2011, par RonopolisI can't find the answer to this at the FFmpeg website.
If someone submits code to FFmpeg, is the code just reviewed for technical correctness, or is there also a (for lack of better words) legal review ? A review for any potential patent or copyright issues ? If someone contributes to FFmpeg, does the contributor need to sign any kind of "Contributors Statement" or disclaimer ?
-
how to install ffmpeg on localhost
25 mars 2014, par Paul LedgerThere is a lot of topics on this but after hours of reading i am still getting no where.
I have found a lot of issues wit this.- people have given links to files that no longer exist
- the help people have given refers to files that aren't included with the download
This is the nearest i have found
I followed this exactly, after finding a different version of the file broken link
version I found version available at sourceforge which isn't very helpful.
Steps as decribed :
- unzip
- copy ffmpeg.exe somewhere and remember the path for later use
- move php_ffmpeg.dll to php extension dir (usually c :\xampp\php\ext)
- move all other files to Windows\System32 (except COPYING.GPLv3.txt,
readme.txt) - add extension=php_ffmpeg.dll to php.ini (usually
c :\xampp\php\php.ini) - restart apache with fingers crossed questions/answers
http://www.apachefriends.org/f/viewtopic.php?f=16&t=41913
But when I restart apache I get the error :
The program can't because avcodec-51.dll is missing
AND
PHP startup : Unable to load dynamic libary php_ffmpeg.dll can't be found
The php_ffmpeg file is in the apache extention folder and has been declared in the php.ini file. I don't really change many settings in my php.ini file so I just put iy at the top of the extentions, if this is the problem please let me know.
extension=php_ffmpeg.dll <---first extention added
extension=php_bz2.dll <---- this was allready thereIf anybody knows an easy way to install this on a localhost I would really appropriate and if I'm having this much trouble on localhost should I bother trying to get this working on my lunix server.
(I am using xampp on windows and my lunix server is hosted through 1and1 - not my first choice but its for a friends site)
-
How to map ffmpeg formats to MIME types and file extensions ?
17 mai 2017, par odigityAnyone know of a reference for mapping ffmpeg format values to MIME types and recommended file extension ? My google attempt failed to turn up anything.
I did manually put together a small list with guess-work and clues from Wikipedia, IANA, and the Mozilla Developer Network for the subset of formats that I encountered in my video input test collection :
ffmpeg Format Extension MIME Type
─────────────────────── ───────── ──────────────────────
asf asf application/vnd.ms-asf
avi avi video/x-msvideo
flv flv video/x-flv
matroska,webm webm video/webm
m4v m4v video/x-m4v
mov,mp4,m4a,3gp,3g2,mj2 mp4 video/mp4
mpeg mpeg video/mpeg
mpegts mpeg video/mpeg
mpegvideo mpeg video/mpeg
ogg ogv video/ogg
matroska mkv video/x-matroska
webm webm video/webmNo idea if I’ve made the right calls, though.
(The test files already have file extensions, but I’m operating on the assumption that the extension of a file a user uploads is irrelevant, and that the file should be renamed based on ffprobe and intelligent mapping...)