Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (63)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9135)

  • avformat/mxfdec : Read Apple private Content Light Level from MXF

    9 septembre 2020, par Harry Mallon
    avformat/mxfdec : Read Apple private Content Light Level from MXF
    

    * As embedded by Apple Compressor

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavformat/mxfdec.c
    • [DH] tests/fate/mxf.mak
    • [DH] tests/ref/fate/mxf-probe-applehdr10
  • How to make FFmpeg download only the required segments [closed]

    25 juillet, par daniil_

    I'm developing a tool, that create timelapse. For this purpose I use ffmpeg 7.1.1 verion.&#xA;I have a playlist file called index.m3u8 (inside it there are URLs to TS segments—typically around 5,000 of them). Here’s a small excerpt :

    &#xA;

    #EXTM3U&#xA;#EXT-X-TARGETDURATION:12&#xA;#EXT-X-VERSION:6&#xA;#EXT-X-MEDIA-SEQUENCE:0&#xA;#EXT-X-PLAYLIST-TYPE:EVENT&#xA;#EXT-X-START:TIME-OFFSET=8,PRECISE=YES&#xA;#EXT-X-PROGRAM-DATE-TIME:2025-07-22T07:59:51.173Z&#xA;#EXTINF:10.080,&#xA;https://my-storage.io/receiver/archives/3a1b162d-392d-d45a-089a-dc93fb842a35/files/2025-07-22/07/59/1753171191173_aa_00000_00000_10080.ts?exp=1753543086&amp;signature=MEYCIQCx_hDnFVwk7WJyQG5QujV5ZGhLoBqkD5uoQFebha1knQIhAMJm1KA5DLEuqD4_5zS5QlzTGIuj5q9TCUcML7MEPMl7&#xA;#EXT-X-PROGRAM-DATE-TIME:2025-07-22T08:00:01.253Z&#xA;#EXTINF:10.080,&#xA;https://my-storage.io/receiver/archives/3a1b162d-392d-d45a-089a-dc93fb842a35/files/2025-07-22/08/00/1753171201253_aa_00000_00000_10080.ts?exp=1753543086&amp;signature=MEYCIQCx_hDnFVwk7WJyQG5QujV5ZGhLoBqkD5uoQFebha1knQIhAMJm1KA5DLEuqD4_5zS5QlzTGIuj5q9TCUcML7MEPMl7&#xA;#EXT-X-PROGRAM-DATE-TIME:2025-07-22T08:00:11.333Z&#xA;#EXTINF:10.021,&#xA;https://my-storage.io/receiver/archives/3a1b162d-392d-d45a-089a-dc93fb842a35/files/2025-07-22/08/00/1753171211333_aa_00000_00000_10021.ts?exp=1753543086&amp;signature=MEYCIQCx_hDnFVwk7WJyQG5QujV5ZGhLoBqkD5uoQFebha1knQIhAMJm1KA5DLEuqD4_5zS5QlzTGIuj5q9TCUcML7MEPMl7&#xA;#EXT-X-PROGRAM-DATE-TIME:2025-07-22T08:00:21.354Z&#xA;#EXTINF:10.079,&#xA;https://my-storage.io/receiver/archives/3a1b162d-392d-d45a-089a-dc93fb842a35/files/2025-07-22/08/00/1753171221354_aa_00000_00000_10079.ts?exp=1753543086&amp;signature=MEYCIQCx_hDnFVwk7WJyQG5QujV5ZGhLoBqkD5uoQFebha1knQIhAMJm1KA5DLEuqD4_5zS5QlzTGIuj5q9TCUcML7MEPMl7&#xA;#EXT-X-PROGRAM-DATE-TIME:2025-07-22T08:00:31.433Z&#xA;...&#xA;

    &#xA;

    I’m trying to extract still images from the stream at specific moments.

    &#xA;

    When I run a command like :

    &#xA;

    ffmpeg \&#xA;  -analyzeduration 5000000 \&#xA;  -probesize 5000000 \&#xA;  -err_detect ignore_err \&#xA;  -protocol_whitelist file,http,https,tcp,tls \&#xA;  -allowed_extensions ALL \&#xA;  -f hls \&#xA;  -y \&#xA;  -ss 11316.719 \&#xA;  -i /Users/daniil/Desktop/test/exports/.../index.m3u8 \&#xA;  -frames:v 1 \&#xA;  -q:v 2 \&#xA;  /Users/daniil/Desktop/test/exports/.../frames/frame_00100.png&#xA;

    &#xA;

    ffmpeg downloads segments 1 and 2 (presumably to probe the format), and then it downloads two more TS files around the target timestamp.

    &#xA;

    But as soon as I push the -ss value beyond a certain point—in my case -ss 8487.54—it starts downloading every TS segment from the very start of the playlist up to the one I need. That can easily be 1,000 TS files or more. In other words, when -ss is between 0 and 8374.372, everything works fine, but beyond that it exhibits this strange behavior.

    &#xA;

  • Revision 5973 : Augmenter la taille des select multiples ici à un maximum de 20 en ...

    2 octobre 2011, par kent1 — Log

    Augmenter la taille des select multiples ici à un maximum de 20 en fonction du nombre d’articles disponibles