Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (7)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

Sur d’autres sites (5048)

  • FFmpeg decoding H264

    25 septembre 2011, par Steve McFarlin

    I am decoding a H264 stream using FFmpeg on the iPhone. I know the H264 stream is valid and the SPS/PPS are correct as VLC, Quicktime, Flash all decode the stream properly. The issue I am having on the iPhone is best shown by this picture.

    enter image description here

    It is as if the motion vectors are being drawn. This picture was snapped while there was a lot of motion in the image. If the scene is static then there are dots in the corners. This always occurs with predictive frames. The blocky colors are also an issue.

    I have tried various build settings for FFmpeg such as turning off optimizations, asm, neon, and many other combinations. Nothing seems to alter the behavior of the decoder. I have also tried the Works with HTML, Love and Peace releases, and also the latest GIT sources. Is there maybe a setting I am missing, or maybe I have inadvertently enabled some debug setting in the decoder.

    Edit

    I am using sws_scale to convert the image to RGBA. I have tried various different pixel formats with the same results.

    sws_scale(convertCtx, (const uint8_t**)srcFrame->data, srcFrame->linesize, 0, codecCtx->height, dstFrame->data, dstFrame->linesize);

    I am using PIX_FMT_YUV420P as the source format when setting up my codec context.

  • FFMPEG/FFPLAY Dual screen with live RTMP Filter

    28 février 2016, par Dennis Bijsterveld

    What I’m trying to do is getting a RTMP input and apply 2 filters to the same input source and having them next to eachother. To check both EBUR128 levels and waveforms. Problem that I’m getting is that I can’t mix them together.

    Filters :
    EBU R128 (I would love to have a graphical EBU R128 meter.)
    Example :

    ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18
    [out0][out1]"

    And a waveform to check broadcast levels.

    ffplay -i http://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_480p_surround-fix.avi -vf "split[a][b] ;[a]format=gray,waveform,split[c][d] ;[b]pad=iw:ih+256[padded] ;[c]geq=g=1:b=1[red] ;[d]geq=r=1:b=1,crop=in_w:220:0:16[mid] ;[red][mid]overlay=0:16[wave] ;[padded][wave]overlay=0:H-h"

  • Empty output when extracting frames with FFMPEG at specific timestamps taken from FFPROBE

    9 octobre 2023, par Andrew McDowell

    I am trying to extract frames from a video as close as possible to specific timestamps, but for some timestamps I'm getting no output.

    


    I'm first using ffprobe to get a list of all frames along with their time values :

    


    ffprobe -select_streams v -show_frames -show_entries frame=pts_time,pkt_pts_time,pict_type <input video="video" />

    &#xA;

    Which gives me an output like :

    &#xA;

    [FRAME]&#xA;pts_time=11.950000&#xA;pict_type=I&#xA;[/FRAME]&#xA;[FRAME]&#xA;pts_time=11.966667&#xA;pict_type=B&#xA;[/FRAME]&#xA;[FRAME]&#xA;pts_time=11.983333&#xA;pict_type=P&#xA;[/FRAME]&#xA;

    &#xA;

    I'm then parsing this and determining which frame is the closest to the time I want and using FFmpeg to extract frames which match the chosen times like so :

    &#xA;

    ffmpeg -i <input video="video" /> -filter:v "select=&#x27;eq(t, 11.950000)&#x2B;eq(t, 11.983333)&#x27;" -vsync drop -start_number 0 <output path="path">/frame-%08d.png</output>

    &#xA;

    This mostly works but I've noticed for some frames I get no output. From some testing it always seems to work for I frames and works occasionally for P or B frames but not always.

    &#xA;

    I can't see any pattern to which frames it works for or not and would love an insight into whether I'm doing something wrong in the extraction, or whether there's a way to determine which frames can be extracted or not.

    &#xA;