Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (77)

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

  • Finding duration/number of frames of WebM using FFMPEG/libavformat

    12 septembre 2015, par gcgrant

    I’m trying to retrieve the duration and number of frames from a WebM file using FFMPEG and libavformat. I’m adapting some code that was initially written to work with MP4s, and when passing an MP4 it seems to work fine.

    I have FFMPEG 2.1 compiled with the vp8 parser and decoder and the matroska demuxer.

    I have an AVStream pointer to the video stream, *video_st. The code looks for the number of frames in video_st->nb_frames, and for the duration in video_st->duration. These both appear to be 0.

    The API docs for for video_st->duration (https://ffmpeg.org/doxygen/trunk/structAVStream.html#a4e04af7a5a4d8298649850df798dd0b) say that "If a source file does not specify a duration, but does specify a bitrate, this value will be estimated from bitrate and file size." I can confirm that that this file does specify a duration and a bitrate (as I tested it on my desktop with ffmpeg -i). So it seems odd that this is returning 0. Perhaps my FFMPEG build configuration is incorrect ?

    As for nb_frames, the docs say "number of frames in this stream if known or 0". Is there anything I can do if this returns 0 ? Again, ffmpeg -i does return an estimate for fps ; that would be good enough, as I could estimate the number of frames with that and the duration.

    Thanks !

  • Additional : Add validation rule for mobile number of Russia Federatio…

    6 novembre 2018, par jehadja
    Additional : Add validation rule for mobile number of Russia Federation (#2207)
  • avformat/hls : change sequence number type to int64_t

    16 janvier 2021, par Zhao Zhili
    avformat/hls : change sequence number type to int64_t
    

    Fix atoi() overflow for large EXT-X-MEDIA-SEQUENCE.

    The spec says the type of sequence number is uint64_t. Use int64_t
    here since current implementation requires it to be signed integer,
    and hlsenc use int64_t too.

    • [DH] libavformat/hls.c