Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (96)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8888)

  • lavf/hevc : Fix type specifiers, missed in 8b5d1553

    2 septembre 2022, par Carl Eugen Hoyos
    lavf/hevc : Fix type specifiers, missed in 8b5d1553
    

    Fixes several warnings with msvc :
    warning : format specifies type 'unsigned char' but the argument has type 'unsigned int'

    • [DH] libavformat/hevc.c
  • ffserver supplying wrong MIME type for mp4

    8 juillet 2015, par Alex Cohen

    I have a video stream I am streaming from ffserver that works fine on the webm side (in Chrome), however the h264/mp4 side does not work, at least not in Internet Explorer.

    Internet Explorer supplies an error of : ’MEDIA12899 : AUDIO/VIDEO : Unknown MIME type’

    Looking at what is going on in fiddler it appears that it is using a header containing :

    Content-Type : application/mp4

    Shouldn’t that type be video/mp4 ?

    In ffserver this particular stream is configured as :

    <stream>
    Feed 720_h264.ffm
    Format mp4
    NoAudio
    VideoCodec libx264
    VideoSize 1280x720
    VideoFrameRate 5
    VideoBitRate 4096
    VideoBufferSize 40000
    AVOptionVideo flags +global_header
    AVOptionVideo qmin 10
    AVOptionVideo qmax 42
    VideoGopSize 32
    PreRoll 5
    StartSendOnKey
    </stream>

    Does anyone know how to force or correct the header set by ffserver to (presumably) make MSIE happy ?

  • avcodec : Fix reference data type for nvdec vc1 hwaccel

    16 novembre 2017, par Philip Langdale
    avcodec : Fix reference data type for nvdec vc1 hwaccel
    

    I took the reference lookup code from the vp9 hwaccel where the
    type is unsigned char, but for vc1, the type is signed int.

    This is particularly important because the value used when there's
    no reference is different (255 vs -1).

    It didn't seem to break anything, but for mpeg1/2/4, this mistake
    caused decode errors.

    • [DH] libavcodec/nvdec_vc1.c