Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (50)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12317)

  • videos converted to gif with ffmpeg have a box pattern background

    18 mars 2017, par vasisdas

    I recently started using ffmpeg to convert small videos I make into gifs. However, I’m noticing that all gifs I make have a pattern background of some kind. It’s not too noticeable of a difference between the video and the gif, but you can see it clearly in the difference between the video preview and the gif preview :

    Original video on youtube

    Gif in imgur album, along with a thumbnail of the gif and the video

    The command I send to ffmpeg to convert :

    ffmpeg -i "video path" -pix_fmt rgb24 "output file path"

    I’ve tried it with and without the -pix_fmt rgb24. Any ideas what else it could be ?

  • Wrong duration of the result video when using ffmpeg filter complex concat [closed]

    9 décembre 2023, par Igor Chubin

    I am trying to do a trivial task of concatenating
several segments of the original video/audio
into a new file (and dropping the rest) :

    


        ffmpeg -i bdt.mkv -filter_complex '
    [0:v]trim=start=10.0:end=15.0,setpts=PTS-STARTPTS[0v];
    [0:a]atrim=start=10.0:end=15.0,asetpts=PTS-STARTPTS[0a];
    [0:v]trim=start=65.0:end=70.0,setpts=PTS-STARTPTS[1v];
    [0:a]atrim=start=65.0:end=70.0,asetpts=PTS-STARTPTS[1a];[0v][0a][1v]
    [1a]concat=n=2:v=1:a=1[outv][outa]' -map [outv] -map [outa] out.mp4


    


    When I am trying to watch out.mp4 after that, it has the original duration of bdt.mkv (70 minutes) and not 10 seconds, as I would expect.

    


    What am I doing wrong ?

    


    Update 1.

    


    (exactly as Scott Codez suggested)

    


    The problem is related to the formats. If the output format is mkv too, the problem disappears. But when I use mp4, that I need, the problem persists.

    


  • Covert a file from mp4 to a file that HTML video tag can display

    26 juin 2019, par Trying_To_Understand

    I have a mp4 file and I want to display it in HTML. The problem is that it won’t, not only in HTML but also in my player. In VLC I can watch the video but there is no sound. Maybe the file is corrupted ?
    This is the output when I run ffmpeg -i my_file.mp4 :

    [h264 @ 000001b4afc61880] decode_slice_header error
    [h264 @ 000001b4afc61880] no frame!
    [h264 @ 000001b4afc61880] non-existing PPS 0 referenced
       Last message repeated 1 times
    [h264 @ 000001b4afc61880] decode_slice_header error
    [h264 @ 000001b4afc61880] no frame!
    Input #0, mpeg, from '150_2.mp4':
     Duration: 00:50:51.75, start: 13182.386222, bitrate: 983 kb/s
       Stream #0:0[0x1e0]: Video: h264 (High), yuv420p(progressive), 1280x720, 25 fps, 25 tbr, 90k tbn, 50 tbc
       Stream #0:1[0x1c0]: Audio: pcm_alaw, 8000 Hz, mono, s16, 64 kb/s
    At least one output file must be specified.

    Can I convert this with ffmpeg to a good quality of video and audio ?