Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (60)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (10246)

  • lavc/rawdec : Use 16-byte line alignment for 1, 2, 4 and 8 bpp

    25 janvier 2016, par Mats Peterson
    lavc/rawdec : Use 16-byte line alignment for 1, 2, 4 and 8 bpp
    

    This patch aligns the lines of 1 bpp depth for QuickTime, and 2, 4 and 8
    bpp depths for AVI and QuickTime, on 16-byte boundaries. At the same
    time, the packet row stride is properly catered for.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/rawdec.c
  • lavc/rawdec : Use 16-byte line alignment for AV_PIX_FMT_MONOWHITE

    25 janvier 2016, par Mats Peterson
    lavc/rawdec : Use 16-byte line alignment for AV_PIX_FMT_MONOWHITE
    

    The line alignment for 1 bpp raw AV_PIX_FMT_MONOWHITE video (currently
    used for AVI) was previously 4 bytes, which generated alignment warning
    messages, not only for odd-width files. The alignment is now 16 bytes.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/rawdec.c
  • Override matched Line

    2 février 2016, par jb_alvarado

    When I print the output from ffmpeg to a file, I get something like this :

    [...]
    frame=   28 fps=0.0 q=-0.0 size=N/A time=00:00:01.16 bitrate=N/A speed=2.31x    
    frame=   55 fps= 54 q=-0.0 size=N/A time=00:00:02.24 bitrate=N/A speed= 2.2x    
    frame=   84 fps= 55 q=-0.0 size=N/A time=00:00:03.40 bitrate=N/A speed=2.22x    
    frame=  112 fps= 54 q=-0.0 size=N/A time=00:00:04.52 bitrate=N/A speed=2.17x    
    [...]

    Now I would like that all lines that matches with frame=* get replaced and only the last current line get printed to the text file (in real time).

    Is this possible ?

    At the moment I have this line :

    ffmpeg -v info -i input.ext -f null 2>&amp;1 | awk '/frame=/{gsub(/.*/, $0)};{print}'

    It works almost, except that all line with contain frame=* are empty.