
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (64)
-
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" (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6173)
-
Anomalie #3562 (Fermé) : onAjaxLoad s’applique sur Document lorsqu’il provient d’une fenêtre modal...
6 mai 2017, par AnonymeAppliqué par commit r23533.
-
Keep the original format when adding audio-filter, auto-detect format from original file
13 septembre 2016, par cnvzmxcvmcxMultiple users upload different kind of videos and I do not save the format of these videos, just the codecs. ffmpeg detects the video and audio codec when needed and it was all good till today. I was adding a audio normalization step. How to make ffmpeg auto choose a container format based on codecs ? It seems ffmpeg will choose the output audio codec based on the format specified. Can I ask it to stick to original format and codec whatever it was ?
ffmpeg -y -i /mnt/tmp/asjkdh39 -c:v copy -af "volume=10.7dB" /mnt/tmp/0540hsl
For the above command, I get an error :
[NULL @ 0x9214a0] Unable to find a suitable output format for '/mnt/tmp/0540hsl'
-
ffmpeg works from terminal but not by php script
22 janvier 2019, par Naman TamrakarI have to get the thumbnail image of video i am using the ffmpeg. On my server i run the ffmpeg command from ssh then it is working but from the php exec function it is not working it gives the error /usr/bin/ffmpeg : no such file or dirctory but the ffmpeg is installed on this location usr/bin/ffmpeg.
my source code is :$ffmpeg = '/usr/bin/ffmpeg';
$videoname = 'myvideo.mp4';
$video = $_SERVER['DOCUMENT_ROOT'].'/uploads/videos/'.$videoname;
$image = $_SERVER['DOCUMENT_ROOT'].'/uploads/thumbs/thumb.jpg';
$second = 1;
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg $image 2>&1";
exec($cmd);Please provide any solution.