
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
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
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (31)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
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" (...)
Sur d’autres sites (6938)
-
Handling Unknown encoder with ffmpeg hardware acceleration
23 septembre 2018, par GabrielleI am having a heavy use of CPU from ffmpeg to record my screen.
To solve this, I am trying to use hardware acceleration. The problem is that my program is intended to run in different platforms...
I would like to know if there is a way to say "use any hardware acceleration available or none if none is available"...
I tried to use
-c:v h264_nvenc -allow-sw 1
in hope that, since I was testing on a Mac and I don’t have this encoding, the software encoding would be used instead, but this did not happened, instead, the entire command crashed. -
ffmpeg "Automatic encoder selection failed for output stream"
6 octobre 2018, par polmonroigI am trying to convert a video file from mp4 to exr but I am getting this error with this command in ffmpeg.
Command
ffmpeg -i 'video.MP4' 'video.%04d.exr'
Error
Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec exr) is probably disabled. Please choose an encoder manually.
Error selecting an encoder for stream 0:0I hope someone can help me, I am really lost.
Thank you !
-
How to install ffmpeg and convert videos to mp4 in PHP ?
21 octobre 2018, par loot vergeI downloaded the latest version of ffmpeg.exe. How can I use it in order to convert videos to mp4 using PHP script and Do I need to install the ffmpeg.exe in order for me to use it if so, how can I install it properly ? I am using the latest version XAMPP. I have seen many sites with tutorial but none of the have the proper information to install and use ffmpeg. I hope you guys can help me. I tried to copy the ffmpeg.exe in the folder of my site and tried the code below I am getting an error
if(exec("ffmpeg.exe")){
echo "ok";
}
else {
echo "error";
}