Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (97)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • 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" ;

Sur d’autres sites (9673)

  • FFMPEG doesn't decode the first few frames with multithreaded decoding. C++

    12 octobre 2022, par Patrick McKeever

    So to get better decoding speeds, I'm setting

    


    av_stream->codec->thread_count = 32;
av_stream->codec->thread_type = FF_THREAD_FRAME;


    


    This greatly improves decoding time, but seems to lose some frames (equaling the amount of threads I set)

    


    For the first 32 or so frames, av_readframe(), and avcodec_send_packet() succeed, but avcodec_recieve_frame() seems to fail.

    


    This seems to result in the last 31 frames to not be decoded, as my loop exits once avcodec_send_packet() fails.

    


    Anyone know how I can get the final frames to also be decoded ? I read something about flushing the buffers, but I'm not really sure how to do that.

    


    Thanks.

    


  • How to resize yuv420sp using FFmpeg

    27 juin 2012, par newentry

    How to resize yuv420sp data into some other resolution.I tried using ffmpeg sws_scale but no success.I tried by converting yuv420sp to yuv420p and then tried to resize yuv420p into RGB24 via sws_scale but the things it works when both src and destination width and height are same, but for different resolution didn't get correct rgb24. Can anyboody guide me with example code using c or if possible through Java itself .The final resized data must be in yuv420p.
    In my case i am trying to downsize the yuv420sp for eg 640*480 to 320*240 or 176*144.

    thanks,

  • How to install ffmpeg for PHP

    20 décembre 2016, par Julie Bsd

    I’ve successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7).
    ffmpeg works fine - but now I need to use it without root access.

    When i try to use ffmpeg without root access, I get the following error :

    ffmpeg: error while loading shared libraries: libx264.so.148:
           cannot open shared object file: No such file or directory

    The final goal is to be able to use ffmpeg inside my PHP scripts which do not root access.