
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (49)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5515)
-
Copy ffmpeg live stream without overwrite previous file [closed]
2 février 2020, par PanagiotisWhen I login I automatically start a script, that downloads a radio stream with ffmpeg.
ffmpeg -i \
http://139.162.14.151:9090 \
-c copy output.mp3But each time it is asking me to overwrite the file. I want it to automatically create a new file without overwriting the previous one.
-
Revision f92c0b1688 : Abort if firstpass file does not exist This fixes a crash if the firstpass file
30 janvier 2015, par Adrian GrangeChanged Paths :
Modify /vpxstats.c
Abort if firstpass file does not existThis fixes a crash if the firstpass file does not
exist when doing a two-pass encode.Change-Id : I3a1a95d68d57125c63123d6208af7537f5a689a0
-
How can I burn in .ass file and a watermark to a video file using ffmpeg simultaneously ?
9 mai 2023, par CandourI want to add subtitles and a watermark to a video using ffmpeg. For now I'm using Handbrake to burn in the subtitles and later I execute an ffmpeg command to add a watermark from png file.


The watermark command :


ffmpeg -i F:\ffmpeg\bin\video.mp4 -i F:\ffmpeg\bin\logo.png -filter_complex "[1]format=rgba,colorchannelmixer=aa=0.4[logo];[logo][0]scale2ref=oh*mdar:ih*0.07[logo][video];[video][logo]overlay=(main_w-overlay_w)-10:10" output.mp4



I was wondering how a command would look like if I wanted to skip the Handbrake part and burn the subtitles in directly in the same command as the watermark.


Well, I understand the basics of ffmpeg commands and I tried to combine the commands but i got lost. I think the third input would be needed that somehow also goes in the overlay filter. I really hope someone can help