
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (82)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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" (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (11393)
-
ffplay Find where it loads an image file
26 février 2013, par user1898902I'm trying to figure out where ffplay loads an image file and how it deals with it. Mostly how it figures out which files its dealing with and the function that are called to deal with it. The entire process from start to end of an image file given at the command line would be alot of help, though I know there are thousands and thousands of lines of code.
Thanks.My question : Where do the files you give to ffmpeg go from main() ? What functions take them and decide what file type they are so it knows how to handle them ?
-
Revision 6193bc3ba8 : Refactor vp9_dequant_idct_add function Provided a wrapper and removed duplicate
28 février 2013, par Yunqing WangChanged Paths : Modify /vp9/common/vp9_blockd.h Modify /vp9/common/vp9_rtcd_defs.sh Modify /vp9/decoder/vp9_decodframe.c Modify /vp9/decoder/vp9_dequantize.c Modify /vp9/decoder/vp9_dequantize.h Modify /vp9/decoder/vp9_idct_blk.c Refactor vp9_dequant_idct_add function Provided a (...)
-
Trying to find duration of ffmpeg [closed]
17 janvier 2013, par Curtis CrewePossible Duplicate :
PHP Function to get MP3 durationI've currently got the following code for getting the video duration
$file = "videos/the_video.mp4";
passthru("ffmpeg -i ".$file." 2>&1");
$duration = ob_get_contents();
$search='/Duration: (.*?)[.]/';
$duration=preg_match($search, $duration, $matches, PREG_OFFSET_CAPTURE);
$duration = $matches[1][0];How would I do this using a MP3 ?