Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (81)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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.

Sur d’autres sites (9271)

  • lavc/libkvazaar : indent the code

    15 décembre 2018, par Jun Zhao
    lavc/libkvazaar : indent the code
    

    indent the code to follow FFmpeg's coding style

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavcodec/libkvazaar.c
  • Feeding FFMPEG from buffer in c code RAW H264 to MP4 wrapping

    8 mai 2017, par abraxas1

    i have a raw h264 stream coming in from cameras with a custom API. data gets put into a callback function in my c code.

    i need to wrap this as mp4. i’m using ffmpeg to do this now, but only after the h264es file has been written and closed, so very time consuming on a beaglebone-like processor.

    i have been trying to write this data to a named pipe and feed that to ffmpeg but can not get this to work. maybe i’m not opening/closing pipes properly, it hangs. or not specifying the piping properly for ffmpeg.

    is it possible to feed the buffered data more directly to ffmpeg ?
    or, how do i set up the named pipe to work properly ?

    first i’m opening the fifo like this

    g_fifoname="/tmp/fifocam1.h264";
    mkfifo(g_fifoname, 0666);               // make the fifos
    fd_fifo[ch+brd*2] = open(g_fifoname, O_RDWR);

    then, i’m calling ffmpeg like this, at this moment anyway. trying many things.

    char* execargs[]={PATH_TO_FFMPEG,"-re","-y","-framerate","30","-f","h264","-video_size","1920x1080","-i",g_fifname,"-c:v","copy","-an",pathname, (char*)0};

    i probably got the ffmpeg call wrong. argh.
    i open the fifo first, then start ffmpeg.
    when streaming is stopped i close fifo’s, then close ffmpeg output file.

    ffmpeg is so powerful and frustrating to wrangle.
    thanks all,

  • lavfi/drawbox : refine code

    14 mai 2021, par Ting Fu
    lavfi/drawbox : refine code
    

    Extract common code of filter_frame() and drawgrid_filter_frame() to draw_region().

    Signed-off-by : Ting Fu <ting.fu@intel.com>

    • [DH] libavfilter/vf_drawbox.c