
Recherche avancée
Autres articles (81)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (8979)
-
After video codec copy to mp4 format with ffmpeg,new video has no screen and has just audio
19 juin 2018, par parsaI have an issue.sometimes when I convert video to mp4 with codec copy,my created video in chrome just has audio and it’s display a black screen, and in another browsers like firefox and internet explorer video doesn’t play.
but I check this created video on my server and video displays.
And here is my code in belowffmpeg -i -f mp4 -s 123.mov -codec copy 123.mp4
The Output Of ffprobe 123.mp4 is :
Metadata:major_brand:isom
minor_version :512
compatible_brands:isomiso2mp41
encoder:Lavf57.31.100
Duration: 00:26:58.97, start: 0.000000, bitrate: 1334 kb/s
Stream #0:0(und): Video: mpeg4 (Advanced Simple Profile) (mp4v / 0x7634706D)
,yuv420p, 640x480 [SAR 1:1 DAR 4:3],1200 kb/s, 29.97 fps,29.97 tbr, 30k tbn,29.97 tbc (default)
Metadata:handler_name: VideoHandler
Stream #0:1(und): Audio: mp3 (mp4a / 0x6134706D), 44100 Hz, stereo, s16p, 12
7 kb/s (default)
Metadata:handler_name: SoundHandler -
After video codec copy to mp4 format with ffmpeg,new video has no screen and has just audio
11 septembre 2016, par parsaI have an issue.sometimes when I convert video to mp4 with codec copy,my created video in chrome just has audio and it’s display a black screen, and in another browsers like firefox and internet explorer video doesn’t play.
but I check this created video on my server and video displays.
And here is my code in belowffmpeg -i -f mp4 -s 123.mov -codec copy 123.mp4
The Output Of ffprobe 123.mp4 is :
Metadata:major_brand:isom
minor_version :512
compatible_brands:isomiso2mp41
encoder:Lavf57.31.100
Duration: 00:26:58.97, start: 0.000000, bitrate: 1334 kb/s
Stream #0:0(und): Video: mpeg4 (Advanced Simple Profile) (mp4v / 0x7634706D)
,yuv420p, 640x480 [SAR 1:1 DAR 4:3],1200 kb/s, 29.97 fps,29.97 tbr, 30k tbn,29.97 tbc (default)
Metadata:handler_name: VideoHandler
Stream #0:1(und): Audio: mp3 (mp4a / 0x6134706D), 44100 Hz, stereo, s16p, 12
7 kb/s (default)
Metadata:handler_name: SoundHandler -
Concat 2 video and add watermark first video ffmpeg
31 août 2020, par cleanguyI have a Video #1, it has audio. Also I have a Video #2, with audio too. I would like to concat the #1 and #2 (or play #1 first, and then #2) and then add a watermark in #1 for the rest of the video, preserving audio timestamps.


I used this command but the watermark appears on the #2 video ?


ffmpeg -i Video1.mp4 -i Video2.mp4 -i watermark.png
 -filter_complex
 "[1][2]overlay=5:5[v2];
 [0][0:a][v2][1:a]concat=n=2:v=1:a=1"
 -c:v libx264 -crf 21 -c:a aac -b:a 384k -ar 48000 -movflags +faststart Out.mp4