
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (57)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7314)
-
Revision 6ddbc845cc : Remove unneeded/incorrect comment. Change-Id : I5c923223c284ad4fda0c45572a66bebc
11 septembre 2015, par MarcoChanged Paths :
Modify /vp9/encoder/vp9_speed_features.c
Remove unneeded/incorrect comment.Change-Id : I5c923223c284ad4fda0c45572a66bebc8528dd1d
-
Concat 3 videos, setting the output frame-rate based on one of the three videos
14 février 2023, par 3EKI have 3 videos that I would like to concat. An intro, a main video and an outro. All mp4s, all the same spec except the main video is a different frame rate to the other two video assets.


I am trying to use ffprobe to find out the frame rate of the main video and then apply that frame rate to the output file.


This is what I have so far, but it is not working.


#!/bin/bash

mezzfile=mezzfile.mp4
tailtime=20
duration=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $mezzfile)
framerate=$(ffprobe -v 0 -of compact=p=0 -select_streams 0 \
-show_entries stream=r_frame_rate '$mezzfile')

ffmpeg -hide_banner -y \
 -i sting.mp4 \
 -i $mezzfile \
 -i endboard.mp4 \
 -filter_complex \
 "[0:v]setpts=PTS-STARTPTS,fps=${framerate}[v_intro]; \
 [0:a]asetpts=PTS-STARTPTS,fps=${framerate}[a_intro]; \
 [1:v]setpts=PTS-STARTPTS,split[v_main1][v_main2]; \
 [1:a]asetpts=PTS-STARTPTS[a_main]; \
 [2:v]setpts=PTS-STARTPTS,fps=${framerate}[v_endboard]; \
 [v_main1]select='gt(t,$duration-$tailtime)',scale=w=iw/2:h=ih/2,setpts=PTS-STARTPTS[v_tail]; \
 [v_endboard][v_tail]overlay[v_pip]; \
 [v_main2]select='lte(t,$duration-$tailtime)',setpts=PTS-STARTPTS[v_mid]; \
 [v_intro][v_mid][v_pip]concat=n=3:v=1:a=0[v_out]; \
 [a_intro][a_main]concat=n=2:v=0:a=1[a_out]" \
 -map "[v_out]" \
 -map "[a_out]" \
 output.mp4



Any help would be greatly appreciated !
Cheers !


I have tried the code above. Hoping someone can help me figure out what I'm doing wrong ?


-
How to install flutter_ffmpeg in flutter and create videos videos filter ?
6 juillet 2023, par Manish KumarWhen I run my Flutter Application after installing flutter_ffmpeg , its give me error like that.






FAILURE : Build failed with an exception.


- 

- What went wrong :
Execution failed for task ':app:mergeDebugNativeLibs'.






A failure occurred while executing com.android.build.gradle.internal.tasks.MergeNativeLibsTask$MergeNativeLibsTaskWorkAction
2 files found with path 'lib/arm64-v8a/libavdevice.so' from inputs :
- C :\Users\ms471.gradle\caches\transforms-3\7451ee8c12b5ab807d22ca1bb7285419\transformed\jetified-mobile-ffmpeg-https-4.4\jni\arm64-v8a\libavdevice.so
- C :\Users\ms471.gradle\caches\transforms-3\5693c1c30f39d5c80a43f75ccb4d5110\transformed\jetified-ffmpeg-kit-https-5.1.LTS\jni\arm64-v8a\libavdevice.so
If you are using jniLibs and CMake IMPORTED targets, see
https://developer.android.com/r/tools/jniLibs-vs-imported-targets




- 

- Try :






Run with —stacktrace option to get the stack trace.
Run with —info or —debug option to get more log output.
Run with —scan to get full insights.




- 

- Get more help at https://help.gradle.org




BUILD FAILED in 1m 16s
Exception : Gradle task assembleDebug failed with exit code 1


I don't know what is the error, can someone help !!


I am trying to build videos filter or effects in flutter.