Recherche avancée

Médias (91)

Autres articles (39)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (3056)

  • 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
  • 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,

  • 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