Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (91)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10077)

  • Kaleidoscope-like video, what happened ? [closed]

    11 avril 2012, par ghost

    I have used dolphin-player (http://code.google.com/p/dolphin-player/), it is based on ffplay with libsdl, all movies are in 3 pictures like these these.

    can anyone know what the problem is, and how to repair it in code ?
    (Source code here)

  • FFMPEG : Create output depending on the input's streams

    14 novembre 2022, par Javierd98

    I'm working on a project where I need to use FFMPEG CLI to generate a video and an audio file from a single input. This is a pretty simple command like :

    


    ffmpeg -i input.mp4 -y -map 0:a:0? -acodec mp2 -f mp2 audio.mp2 -map 0:v:0? -f mp4 -vcodec libx264 video.mp4


    


    So, the main problem I'm experiencing is that I don't really know whether the input has audio/video, it could be a mp4 file with no video or audio streams. In those cases, FFMPEG fails as there is no stream to associate to one of the outputs.

    


    Is there any way I could tell FFMPEG to only create the output if the corresponding input stream exists ? If not, I found this question showing how to add blank audio if there's no input audio, how could I create an empty video too ? Is there any other possible solution ?

    


    Thanks a lot for your help.

    


  • Revision 7eca086707 : Add segmentation map array for current and last frame segmentation. The origina

    17 juillet 2014, par hkuang

    Changed Paths :
     Modify /vp9/common/vp9_alloccommon.c


     Modify /vp9/common/vp9_alloccommon.h


     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/decoder/vp9_decoder.c



    Add segmentation map array for current and last frame segmentation.

    The original implementation only allocates one segmentation map and this
    works fine for serial decode. But for frame parallel decode, each thread
    need to have its own segmentation map and the last frame segmentation map
    should be provided from last frame decoding thread.

    After finishing decoding a frame, thread need to serve the old segmentation
    map that associate with the previous decoded frame. The thread also need to
    use another segmentation map for decoding the current frame.

    Change-Id : I442ddff36b5de9cb8a7eb59e225744c78f4492d8