
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (62)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (10405)
-
Laravel unable to load FFProbe ?
4 février 2016, par EchoLogicI’m using the PHP-FFMpeg repository to do some video work inside my Laravel application, but I’m encountering some issues setting it up. Once I’ve installed the PHP-FFMpeg repo, I try and create an
FFMpeg
instance :$ffmpeg = \FFMpeg\FFMpeg::create();
However, this does not work. In response, I get an ErrorException that simply states :
Unable to load FFProbe
This does not make sense to me, as when I run
ffmpeg
andffprobe
from my Mac’s terminal, I can see they are installed. This is clearly a path/resolving issue, but I’m unsure how to fix it. Any ideas ?This is all hosted under a MAMP project, running on localhost.
-
mingw : Enable the tsaware linker flag
26 juillet 2015, par Henrik Gramnermingw : Enable the tsaware linker flag
Avoids an irrelevant compatibility layer in Terminal Services environments.
-
Issue in converting .mov to .mp4 php
30 novembre 2016, par InventillectI am trying to convert a video with extension .mov to .mp4 format. Following is the command that I try to use
$file_name = "abc.mov";
$mp4_file = "abc.mp4";
$cmd = 'sudo /usr/bin/ffmpeg -i /path_to_file' . $file_name . ' -strict experimental -vcodec libx264 -pix_fmt yuv420p -profile:v baseline -preset slower -crf 18 -vf "scale=trunc(in_w/2)*2:trunc(in_h/2)*2" /destination_path/' . $mp4_file;
exec($cmd, $out, $res);However the desired file( with .mp4 ) is not getting created. When I copy the command and paste it inside terminal, the file with the desired format is getting created. However same is not working with exec command in my php code.
I am not able to figure out the actual cause of issue, since it seems out to be strange. Any help shall be appreciated. Thanks in advance