Recherche avancée

Médias (91)

Autres articles (22)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5086)

  • avfilter/vf_idet : Fixing idet for single-frame inputs.

    28 novembre 2014, par Neil Birkbeck
    avfilter/vf_idet : Fixing idet for single-frame inputs.
    

    Handle single frame inputs similar to yadif (e.g., https://github.com/FFmpeg/FFmpeg/commit/0f9f24c9cfd291c7ece4d3bad64fdf06d107168a and https://github.com/FFmpeg/FFmpeg/commit/681e008d06d2241d50abe6316c908a184ddc5942)

    Example :
    ffmpeg -r 1 -t 1 -i fate-suite/ffmpeg-synthetic/vsynth1/%02d.pgm -vf idet,showinfo -f null -y /dev/null

    Previously :
    Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)
    [Parsed_idet_0 @ 0x36389d0] Repeated Fields : Neither : 0 Top : 0 Bottom : 0

    After patch :
    [Parsed_showinfo_1 @ 0x1909810] n:0 pts:0 pts_time:0 pos :-1 fmt:gray sar:0/1 s:352x432 ...
    [Parsed_idet_0 @ 0x18f9bb0] Repeated Fields : Neither : 1 Top : 0 Bottom : 0

    Fate looks good.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_idet.c
  • how to rename multiple files 00001.png to 000001.png

    31 octobre 2023, par Natasha Imanbh

    how to rename multiple files 00001.png to 000001.png basically add 1 more 0 to it&#xA;the folder has 200,000 pngs. as 00001.png,00002.png,00003.png,00004.png,00005.png......

    &#xA;

    everything is in order , after 99999.png the next on is 100000.png but from 00001.png to 99999.png i would like 000001.png to 099999.png

    &#xA;

    dont really know effective ways also i not a coder, so max i cant do is pretty much copy paste a code or somethinng into a .bat file or powershell and run it :(

    &#xA;

  • libavformat/mov.c : allow QuickTime metadata to come after traks

    4 décembre 2015, par Neil Birkbeck
    libavformat/mov.c : allow QuickTime metadata to come after traks
    

    QuickTime metadata can come after trak data. Add indicator for which trak is being parsed (-1 if none) so that global metadata after the trak can be parsed.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c