Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une 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, par

    Certains 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, par

    MediaSPIP 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 Panagiotis

    When 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.mp3

    But 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 Grange

    Changed Paths :
     Modify /vpxstats.c



    Abort if firstpass file does not exist

    This 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 Candour

    I 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