
Recherche avancée
Autres articles (33)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (4658)
-
ffprobe : Dont clear AVFrame between uses.
25 décembre 2013, par Michael Niedermayer -
How to make `mktime` format with milliseconds ?
20 septembre 2019, par Mantas KildišisI need make 24 frames per second with PHP
ffmpeg
. This is current format of$t = mktime(0, 0, 0, 1, 1, 98);
Later I use this function
exec("/usr/local/bin/ffmpeg -ss " . date("H:i:s", $t) . " -i {$file} -f mjpeg -vframes 1 -s {$size} {$tmpfile}");
In
date("H:i:s", $t)
I need makedate("H:i:s.milliseconds", $t)
. This is not workingdate("H:i:s.u", $t)
because ofmktime
format (hours, minutes, seconds, day. month, years) I guess.So, is it possible to add milliseconds to
mktime
? -
Cutting FLAC using ffmpeg does not change timestamps accordingly
21 mars 2021, par George TianI am using the following command to cut a FLAC file :


ffmpeg -i input.flac -ss 10s -t 10s -c copy output.flac


output.flac
contains the correct duration of audio. However, all media players show its duration as the duration ofinput.flac
.

The only other mention of this issue is an open ticket from 5 years ago.


How do I correct the timestamp of the output file ?