
Recherche avancée
Autres articles (101)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (12609)
-
Use FFmpeg to compare the same videos with different lenght
5 mai 2016, par user3043703I have two videos taken from the same multimedia file, with identical video codec, bitrate, width x height, audio codec, etc... It would be possible, for example, to see if one video includes the second and to get the time where the second video starts to differentiate from the first ? I think that this job should be done by FFmpeg and the right process would be to compare just video or audio frames. I know some basic commands but really cannot understand how to perform this kind of comparison.
-
Use ffmpeg to resize mp4 files in one folder under win10 but failed ? [duplicate]
11 décembre 2023, par li_zhichengThis is my code in a .bat file :


@echo off
set /a n=0
for %%i in (D:\videos\*.mp4) do (
set /a n+=1
ffmpeg -i %%i -vf scale=-1:160 -an D:\videos\small\%%n.mp4
)



I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4
The result is not what I expected.
Can you tell me how to fix it ?
Thanks !


I tried set /a %n%+=1 but it doesn’t work.
I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4


-
Live streaming with ffmpeg is gittery
8 février 2017, par chubakaI started playing around with live streaming with ffmpeg to my rtmp server and was wondering what’s the best approach to it if my approach is sending a chunk of data every 5 or so seconds, because right now it’s kind of gittery and stuttery every time the server gets data.
Would appreciate any advice or books/articles about this topic in general so I could get the basic idea.