Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

  • 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 (8711)

  • How to extract per Coding Tree Unit (CTU) Quantization Parameter (QP) from a h.265 encoded video

    16 avril 2023, par ali falahati

    I want to extract and analyze per CTU or per macro-block information such as QP value from a encoded video file.

    


    All the methods I found are either changing the ffmpeg source code or deprecated tools. Also other questions are not answered correctly.
I wanted to know if there is a simple, straight forward and up to date tutorial on how to extract QP values from an encoded video file using tools such as HM or ffmpeg.
Even if the only way to do it is to change the source code of ffmpeg please provide a clear explanation of what to do and change.

    


  • Use parameter expansions in a command run from "find | xargs" to prevent output overwriting

    20 février 2019, par Philipp

    I have this bash script that is looking for mp4 files in subfolders with certain names and saves frames of those videos as jpeg.

    #!/bin/bash
    find ../folder -type f -iname '*C00*.mp4' | xargs -I %% ffmpeg -i %% -vf fps=1 -q:v 3 "../frames/_${i%.*}_frame%d.jpg"

    The problem is that everytime the script finishes one video the .jepg output files of the next videos are overwriting the existing ones.

    How can I prevent that ?

  • ffmpeg - Cannot find codec parameter http mp3 audio stream

    13 janvier 2015, par Jelly

    I’m trying to decode a mp3 stream using ffmpeg, but I get :

    [mp3 @ 0xabe18730] Could not find codec parameters for stream 0 (Audio: mp3, 44100 Hz, 2 channels, 96 kb/s): unspecified frame size
    Consider increasing the value for the 'analyzeduration' and 'probesize' options

    The relevant code is :

    errnum= avformat_open_input(&ret, uri, NULL, NULL);
    if (errnum < 0)
    {
       Logger::codec_error("avformat_open_input", errnum);
    }
    else
    {
       if (avformat_find_stream_info(ret, NULL) < 0)
       {
           Logger::codec_error("bad format read", errnum);
       }
    }

    How can you increase 'analyzeduration' and 'probesize' from code ?