
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (76)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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 (6493)
-
ffmpeg overlay two video second video transparent visible sub-title
18 octobre 2020, par cleanguyI have two video : video1 without subtitle and video2 with sub-title burned video I want to merge overlay and put the second video2 transparent video and leave only the white sub-title that appears visible it is possible with ffmpeg


-
Create Seamless Video and Crop Video in one command
27 avril 2019, par Zeeshan SheikhI have a ffmpeg command that convert a video for seamless loop. But now i want to crop Video as well in same command.
is there any solution to do crop video 720x720 in same command—Seamless Commmand—
ffmpeg -i video.mp4 -filter_complex [0:v]split[body][pre] ;[pre]trim=duration=1,format=yuva420p,fade=d=1:alpha=1,setpts=PTS+(28/TB)[jt] ;[body]trim=1,setpts=PTS-STARTPTS[main] ;[main][jt]overlay -c:v libx264 -strict experimental out.mp4
-
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