Recherche avancée

Médias (91)

Autres articles (59)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7280)

  • FFMPEG 360 mp4 to SBS for Google cardboard

    3 mai 2022, par mike

    I've created some 360 degree mp4 videos froma GoPro max camera.
I would like to display these on Google cardboard (side by side) in the same way as Youtube, whilst modifying the playback speed with FFMPEG.

    


    I haven't found the right flags to convert the image to SBS with v360 or stereo3d

    


    Any suggestions ?

    


  • avformat/avc : Avoid allocation for small SPS/PPS arrays

    27 novembre 2019, par Andreas Rheinhardt
    avformat/avc : Avoid allocation for small SPS/PPS arrays
    

    By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of
    avio_close_dyn_buf() + av_free() one can avoid an allocation + copy for
    small extradata. Furthermore, it simplifies freeing.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/avc.c
  • avformat/matroskaenc : Avoid allocation for small dynamic buffers

    27 novembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Avoid allocation for small dynamic buffers
    

    By using avio_get_dyn_buf() + ffio_free_dyn_buf() instead of
    avio_close_dyn_buf() + av_free() one can avoid an allocation + copy for
    small dynamic buffers (i.e. small master elements).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c