
Recherche avancée
Autres articles (108)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (15097)
-
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
-
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 ?
-
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).