Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (96)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5223)

  • SDL_SetVideoMode fails under Android ?

    17 avril 2013, par user1568549

    I am trying to buid a Video Player for android using libsdl for rendering and libav for decoding.

    First, i cross-compiled the sdl library for Android platform.
    Then i ceated the jni layer for my sdl cpp file(already tested under ubuntu)
    but when i test it under Android it fails(with fatal error segv11 signal) exactly at the beginning in the following instruction :

    this->screen = SDL_SetVideoMode(width, height, 0, 0);

    Does anyone know any workaround for this error ?

    Does anyone know how to display video using sdl under android ?
    And is there any instructions or steps that i must follow in order to render SDL gui under android ?

    Thanks in advance !

  • Getting the frame number as the filename for an extracted frame in ffmpeg

    7 janvier 2015, par Prashanth

    The following command line extracts the I frames from the video

    ffmpeg -i input.flv -f image2 -vf "select='eq(pict_type,PICT_TYPE_I)'" -vsync vfr thumb%04d.png

    But the frames are sequentially numbered ..like thumb0001,2,3,4,5.... Suppose the 9th frame is an I frame then I want the the extracted frame’s file name as ’thumb9.png’...suppose if 18th frame is the next I frame then the extracted frame’s filename should be ’thumb10.png’ or ’10.png’...

    How to achieve this ? Thanks in advance...

  • How to Convert WAV to MP3 in Pure Python without using External Binaries

    7 novembre 2023, par mrfakename

    Is there any way to convert a WAV file to MP3 in pure Python without using any external binaries (ie FFMPEG), but to have the conversion done in pure Python ?

    


    I looked into using PyDub but it uses FFMPEG.

    


    Thanks in advance !