
Recherche avancée
Autres articles (62)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11230)
-
Revision 12eb2d0267 : Correct bug in loopfilter initialization The memset sets 16 bytes rather than t
9 août 2013, par Adrian GrangeChanged Paths :
Modify /vp9/common/vp9_loopfilter.c
Correct bug in loopfilter initializationThe memset sets 16 bytes rather than the correct size of the
final array dimension (MAX_MODE_LF_DELTAS).(In response to bug posted by Manjit Hota to codec-devel
and webm-discuss lists)Change-Id : I8980f5aa71ddc9d7ef57c5b4700bc28ddf8651c7
-
flutter_ffmpeg package name
22 septembre 2021, par JoergPwhen installing flutter_ffmpeg I should set the package name in


android/build.gradle


ext {
 flutterFFmpegPackage = "<flutter ffmpeg="ffmpeg" package="package" listed="listed" in="in" section="section">"
</flutter>


}


and in ios/Podfile


if plugin_name == 'flutter_ffmpeg'
 pod 'flutter_ffmpeg/<package>', 
</package>


Do I just enter "flutter_ffmpeg" here or is the "package name" different ?
How does the final code should look like ?


Thanks !


-
Concat three videos with one audio [duplicate]
26 septembre 2018, par Михаил БезуглыйThis question already has an answer here :
Thank you for coming here.
I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4
Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track,
duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video.
1) Do I need to crop the video to the length that is obtained by merging all three videos ?
2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?