
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (86)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
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 (12372)
-
ffmpeg - trying to output timecodes in CSV of segments between blacks
20 juin 2022, par Soapa TuneI would be so glad to have some help with this.


I have video rushes in this form : black > sequence > black > sequence...


I need the start/end timecodes of each sequences (no black) to create segments on another software so I wondering if it's possible with the blackdetect filter of FFmpeg to output only the sequences data in a csv file. No problem with the simple command line to have the blacks but I'm still at this point with unsuccess others test.


The goal is automate this for multiple files by import the csv in a RPA.


Thank you very much.


-
FFMPEG convert GIF to MP4 is cutting GIF short
31 août 2019, par JayI have this command line to run ffmpeg from aws lambda.
The code is suppose to convert a GIF to a black background mp4.
On my local PC it works perfectly.
For whatever reason the ouput out of AWS Lambda is missing some of the GIF frames.
Any Ideas ?????
I have checked to make sure /tmp/2.gif is an accurate input and it is.
os.system("/tmp/ffmpeg -f lavfi -i color=black -i /tmp/2.gif -movflags faststart -pix_fmt yuv420p -filter_complex '[0][1]scale2ref[bg][gif];[bg]scale=2*trunc(iw/2):2*trunc(ih/2),setsar=1[bg];[bg][gif]overlay=1' -c:v libx264 -preset veryslow /tmp/black.mp4")
-
Calling ffmpeg from php
7 juillet 2013, par v3gaI need to run ffmpeg from a php script. The ffmpeg wiki page on the same topic (http://ffmpeg.org/trac/ffmpeg/wiki/Using%20FFmpeg%20from%20PHP%20scripts) suggests using shell_exec over ffmpeg-php. Some other pages suggests using ffmpeg-php. Which method is better ? Is ffmpeg-php compatible with latest versions of php ? My only purpose is to convert any videos hosted by the user into mp4 (h.264,aac).