
Recherche avancée
Autres articles (43)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (8658)
-
Anomalie #3028 (Fermé) : Strict standards editer_objet.php on line 183
9 août 2013, par denisb - -
Getting log line for each extracted frame from FFMPEG
3 février 2016, par wpfwannabeI am using FFMPEG.exe to extract frames from various videos. As this is a programmatic solution and getting the total frame count and/or duration can prove tricky (with ffprobe), I am thinking I could use the console output to detect individual frames’ timestamps but I am getting a single output line every N frames like this :
frame= 20 fps=0.0 q=0.0 size= 0kB time=00:00:01.72 bitrate= 0.0kbits/s
frame= 40 fps= 38 q=0.0 size= 0kB time=00:00:04.02 bitrate= 0.0kbits/s
frame= 60 fps= 39 q=0.0 size= 0kB time=00:00:06.14 bitrate= 0.0kbits/s
frame= 70 fps= 38 q=0.0 Lsize= 0kB time=00:00:07.86 bitrate= 0.0kbits/sIs there a command line option to force output for each and every frame ? If so, I could extract the
time=
portion. This is the command line currently used :ffmpeg.exe -i video.avi -y -threads 0 -vsync 2 %10d.jpeg
Ideally, replacing
%10d.jpeg
with some other format that writes frame’s timestamp but I don’t think this exists. -
Anomalie #3028 (Nouveau) : Strict standards editer_objet.php on line 183
18 juillet 2013, par Debondt DidierJ’ai trouver une petite coquille qui génère une erreur :
Strict standards : Only variables should be passed by reference in /Users/Phenix/Sites/Vertige/marnix/ecrire/action/editer_objet.php on line 183
Le code c’est ça :
$champs[’statut’] = reset(array_keys($desc[’statut_textes_instituer’])) ;
J’ai modifier pour que cela fonctionne sans erreur :
$reset = array_keys($desc[’statut_textes_instituer’]) ; $champs[’statut’] = reset($reset) ;
Avec ça plus d’erreur :)