Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (96)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (13587)

  • ffprobe shows bitrate of 0.0 or N/A for h264 stream

    30 mai 2012, par Dan

    I have a 11-minute .mkv file with a h264 video stream, taking up 184MB of space. I would like to reduce the size of this file. I figured I could just reduce the bit-rate. But ffprobe doesn't output any. In fact, it says the length of the file is calculated from the bitrate and thus could be inaccurate, but there's no bitrate either in the summary or in the [FORMAT] entry :

    > ffprobe -show_format file.mkv
    [matroska,webm @ 0x7f8e8084b200] Estimating duration from bitrate, this may be inaccurate
    Input #0, matroska,webm, from 'file.mkv':
     Duration: 00:11:11.59, start: 0.000000, bitrate: N/A
       Stream #0.0: Video: h264 (High), yuv420p, 1280x720 [PAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 1k tbn, 59.94 tbc (default)
       Stream #0.1: Audio: aac, 48000 Hz, 5.1, s16 (default)
    [FORMAT]
    ...
    bit_rate=0.000000
    [/FORMAT]

    Thank you.

    EDIT : My understanding is that H.264 is a protocol. As such, I cannot tell, based on the ffprobe documentation, what implementation the h264 codec uses. If anyone knows that, I'd be grateful.

  • Sample player that shows ffmpeg libstagefright.cpp usage

    24 février 2014, par Mayank Agarwal

    I am trying to write ffmpeg and OMXIL based mediaplayer.Facing issues in compiling the code with so many header files and libraries to include for android media framework.
    Is there any sample player that uses ffmpeg libstagefright.cpp so that i can understand its usage and base my player on that.

    Regards
    Mayank

  • Convert video into individual frames using Python without ffmpeg ?

    20 février 2015, par Mridula Madhusudan

    I need to compare 2 videos to check whether they are the same.

    So I am planning to do the following :

    1. Split both the videos into individual frames
    2. Compare each frame with the corresponding frame of the ref video using Python Image Lib
    3. Count the number of different frames to decide whether they are same.

    I would like to know whether there is any function in Python to help me with the first step, i.e., to split the video into individual frames. I do not want to use ffmpeg to do the splitting.

    Thanks in advance for the help