Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11469)

  • avcodec/g723_1dec : Fix LCG type

    14 mai 2017, par Michael Niedermayer
    avcodec/g723_1dec : Fix LCG type
    

    Fixes : 1567/clusterfuzz-testcase-minimized-5693653555085312

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/g723_1dec.c
  • Unable to receive RTP payload type 96 without an SDP file describing it

    13 décembre 2017, par BanaSong

    How can I use SDP files in iOS FFmpeg ? I’ve tried this :

    char *url = "rtp://127.0.0.1:1234";
    AVFormatContext *oc = NULL;
    avformat_open_input(&amp;oc, url, NULL , NULL);

    But I get the following error :

    [rtp @ 028568e0] Unable to receive RTP payload type 96 without an SDP file
    describing it.

  • How do I specify the HEVC codec in the HTML5 video source type attribute ?

    20 avril 2023, par nfrasser

    I'd like to load and play a smaller HEVC-encoded video on web browsers with support for it.

    &#xA;&#xA;

    I'm using this code on Safari 11 (macOS 10.13), which has support for the HEVC format.

    &#xA;&#xA;

    <video muted="muted" playsinline="playsinline" autoplay="autoplay">&#xA;    <source src="clip.webm" type="video/webm; codecs=vp9">&#xA;    <source src="clip-hevc.mp4" type="video/mp4; codecs=hevc">&#xA;    <source src="clip.mp4" type="video/mp4; codecs=avc1">&#xA;    <p>Video not supported</p>&#xA;</source></source></source></video>&#xA;

    &#xA;&#xA;

    In Web Inspector > Network Panel, I see that Safari loads both clip.mp4 and clip-hevc.mp4. If I inspect the video element, I see that clip.mp4 is playing, not clip-hevc.mp4. I see the same thing on iOS 11.

    &#xA;&#xA;

    When I call HTMLMediaElement.canPlayType() on the types I specified, I get

    &#xA;&#xA;

      &#xA;
    • maybe on video/mp4; codecs=hevc
    • &#xA;

    • probably on video/mp4; codecs=avc1
    • &#xA;

    • Nothing on variants of the HEVC codec I've seen (e.g., hvc1, hev1)
    • &#xA;

    &#xA;&#xA;

    Something else I noticed : When I remove the clip.mp4 option, clip-hevc.mp4 downloads and plays just fine !

    &#xA;&#xA;

    How can I make sure that only the best supported MP4 variant downloads and plays in the browser ?

    &#xA;