Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (71)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (7190)

  • ffmpeg failed to drawbox and set volume

    27 janvier 2021, par Hussam Al-Barodi

    I don't know what is wrong in my command with ffmpeg.
Lets say I have a video and I want to make a black screen with muted audio between 20-30 seconds. So what I wrote is :

    


    ffmpeg -i input.mp4 -filter_complex "[0:v]trim=0:20[0v];[0:a]atrim=0:20[0a];[0:v]trim=20:30,drawbox=color=black:t=fill[1v];[0:a]atrim=20:30,volume=0[1a];[0:v]trim=30:60[2v];[0:a]atrim=30:60[2a];[0v][1v][2v]concat=n=3:v=1:a=0[outv];[0a][1a][2a]concat=n=3:v=0:a=1[outa]" -map [outv] -map [outa] output.mp4


    


    Now, I expect to have a video with 1 min length where the seconds between 20 & 30 are muted with black screen, but what I got is :

    


    20 sec correct
20 sec freezing video with no audio
40 sec black video with no audio
30 sec correct


    


    Can anyone help and tell me what is wrong in the command line ?

    


  • FFMPEG Concatenate multiple videos causes : Too many invisible frames

    2 décembre 2019, par Silmood

    i’m trying to concatenate multiple .webm files in a single one. One of these files is a simple black video generated with the next command :

    ffmpeg -f lavfi -i color=c=black:s=1920x1080:d=5.2 black.webm

    Then this is concat_list.txt

    file 'black.webm'
    file '1.webm'
    file '2.webm'
    file '3.webm'

    Finally i try to concatenate files with :

    ffmpeg -f concat -i concat_list.txt -c copy video.webm

    The result is a long list of this message :

    [AVBSFContext @ 0x7fcecef00180] Too many invisible frames
    [AVBSFContext @ 0x7fcecef00180] Failed to receive packet from filter vp9_superframe for stream 0

    Complete log

    The problem seems to be the black.webm file. I removed it from the concat_list.txt and everything works fine.

    It’s important to mention that none of these files has an audio stream.

  • avfilter/vf_scale : Fix adding 0 to NULL (which is UB) in scale_slice()

    19 février 2021, par Michael Niedermayer
    avfilter/vf_scale : Fix adding 0 to NULL (which is UB) in scale_slice()
    

    Found-by : Jeremy Leconte <jleconte@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_scale.c