
Recherche avancée
Autres articles (57)
-
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 -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (6427)
-
stitching videos together using ffmpeg on the command line
25 décembre 2015, par quinnDoes anybody know how to stitch two (or more) videos together using ffmpeg (or another cli) ? This is assuming that all the videos are in the same format and the video format being used allows for lossless stitching (no transcode, just end-to-end stitching).
-
Php with mp4 videos merge [on hold]
22 juin 2014, par codermuciI want to merge with php mp4 videos. How do I install ffmpeg on my server it.
Video names and video2.mp4 video1.mp4.Plese helm me ?
-
Merging 2 Mp4 videos Using FFMPEG [writing minds]
17 mai 2018, par g7proI’m trying to concatenate multiple videos[Different Source] on Android. I have already used ffmpeg for other needs,Its working fine.But here when am trying to merge videos[diff codecs in audio and video and resolution] it merges and give an output but The video output we get is corrupted after 5-10 seconds and cannot be played further.works fine if all videos are from same source. i can provide the videos i have used .
This is the code i have used
ffmpeg -i video1.avi -i video2.mp4 -i video3.webm -filter complex “[0:v:0] [0:a:0] [1:v:0] [1:a:0] [2:v:0] [2:a:0] concat=n=3:v=1:a=1 [v] [a]” -map “[v]” -map “[a]” output_video.mp4
also i tried using
-f concat -i " + path + "list.txt -c copy " + path + mergedVideoName + ".mp4
All the videos used here are run under these command for making video resolution audio sample rate and video codecs same
ffmpeg -i 2_NVW3BCYHFNZC4K09.mp4 -vf scale=1280:720,setsar=16:9 -ar 44100 test4.mp4 -hide_banner
Gradle dependency used :
compile 'com.writingminds:FFmpegAndroid:0.3.2'
THIS CODE WORKS FINE WITH ANY VIDEOS IN SYSTEM[PC] AND NOT IN ANDROID DEVICE
Thanks in advance