Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (106)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (13726)

  • How to scale the YUV image from MediaCodec output with any color format ?

    17 octobre 2014, par Frank Bush

    I’m using MediaCodec to decode the video and using sws_scale(from ffmpeg) to rescale it.I can deal with one special color format,eg. YUV420P, and rescale it to destination size. But I have to do some preparing work, such as getting the linesize and memcpy the output buffer to three plain slices(data[0],data[1],data[2]).And the decoder output color format varies on different devices.If I get the colorformat,is there a method in ffmpeg to rescale it automatically without special dealing(Of course, the color format should be supported by ffmpeg) ?

  • Playing sound and video out of a streaming .asf file in iOS application

    24 février 2014, par Luc

    I need to read audio and video out of a .asf file that is streamed to my iOS7 application.
    I've compiled ffmpeg but I'm notre really sure this is the way to go. If this is the good tool, I do not know where to go from here.
    Any pointer ?

  • How to pause/resume ffmpeg video capture in windows from C# application

    20 septembre 2022, par Anindya Chatterjee

    I am using ffmpeg to capture screen and audio using a C# application. The command I am using to execute ffmpeg as follows :

    



    ffmpeg -f gdigrab -i desktop -f dshow -i audio="Microphone (Realtek High Definition Audio)" -v
codec libx264 output.mp4


    



    Now I want to pause/resume recording and want to control it from the C# application. Is there anyway I can achieve that ?