Recherche avancée

Médias (91)

Autres articles (32)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (3909)

  • If input is raw rgb24 data, how to fill structure of x264_encoder_encode() inorder to make a success conversion

    22 mai 2012, par 鍾漢雄

    So the question is

    If I have raw rgb data, with r, g, b, r, g, b, ...kind of alignment, and I know it width and height, I need to convert it to h264 raw, how to fill struct for x264_picture_t *pic_in ?

  • Revision 2bf62c1dbb : Enable unit tests by default Build unit tests by default if there is a working

    22 mai 2012, par John Koleszar

    Changed Paths : Modify /configure Enable unit tests by default Build unit tests by default if there is a working C++ toolchain available. Change-Id : I511558339b332fadfde37ef01b2dbf2755f48f89

  • ffmpeg fade filter installed but not working ?

    4 novembre 2011, par Astha

    I have php 5.1.6 running on my CentOS 5 server running Apache 2.2.3

    I installed ffmpeg library and my aim is to covert a set of images into a slideshow with the fadein/fade out effect per image swap.

    Command ffmpeg says :

    `FFmpeg version SVN-r26402, Copyright (c) 2000-2011 the FFmpeg developers
     built on Sep 12 2011 03:37:39 with gcc 4.1.2 20080704 (Red Hat 4.1.2-50)
     configuration:
     libavutil     50.36. 0 / 50.36. 0
     libavcore      0.16. 1 /  0.16. 1
     libavcodec    52.108. 0 / 52.108. 0
     libavformat   52.93. 0 / 52.93. 0
     libavdevice   52. 2. 3 / 52. 2. 3
     libavfilter    1.74. 0 /  1.74. 0
     libswscale     0.12. 0 /  0.12. 0
    Hyper fast Audio and Video encoder
    usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

    Use -h to get full help or, even better, run 'man ffmpeg'

    and command ffmpeg -filters prints :

    FFmpeg version SVN-r26402, Copyright (c) 2000-2011 the FFmpeg developers
     built on Sep 12 2011 03:37:39 with gcc 4.1.2 20080704 (Red Hat 4.1.2-50)
     configuration:
     libavutil     50.36. 0 / 50.36. 0
     libavcore      0.16. 1 /  0.16. 1
     libavcodec    52.108. 0 / 52.108. 0
     libavformat   52.93. 0 / 52.93. 0
     libavdevice   52. 2. 3 / 52. 2. 3
     libavfilter    1.74. 0 /  1.74. 0
     libswscale     0.12. 0 /  0.12. 0
    Filters:
    anull            Pass the source unchanged to the output.
    anullsrc         Null audio source, never return audio frames.
    anullsink        Do absolutely nothing with the input audio.
    copy             Copy the input video unchanged to the output.
    crop             Crop the input video to width:height:x:y.
    drawbox          Draw a colored box on the input video.
    fifo             Buffer input images and send them when they are requested.
    format           Convert the input video to one of the specified pixel formats.
    gradfun          Debands video quickly using gradients.
    hflip            Horizontally flip the input video.
    noformat         Force libavfilter not to use any of the specified pixel formats for the input to the next filter.
    null             Pass the source unchanged to the output.
    overlay          Overlay a video source on top of the input.
    pad              Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black).
    pixdesctest      Test pixel format definitions.
    scale            Scale the input video to width:height size and/or convert the image format.
    setdar           Set the frame display aspect ratio.
    setpts           Set PTS for the output video frame.
    setsar           Set the pixel sample aspect ratio.
    settb            Set timebase for the output link.
    slicify          Pass the images of input video on to next video filter as multiple slices.
    transpose        Transpose input video.
    unsharp          Sharpen or blur the input video.
    vflip            Flip the input video vertically.
    buffer           Buffer video frames, and make them accessible to the filterchain.
    color            Provide an uniformly colored input, syntax is: [color[:size[:rate]]]
    nullsrc          Null video source, never return images.
    nullsink         Do absolutely nothing with the input video.`

    firstly my ffmpeg was not having fade filter because it was giving error

    fade: filter not found

    so i installed the patch created vf_fade.c and made corresponding changes to Makefile and allfilters.c file of directory libavfilters in ffmpeg. configured it again then also ran commands 'make' and 'make install' Restarted the server but still its showing the same error

    fade: filter not found

    what should i do next ? if any more details needed please ask and all the helps and ideas and links will be appreciated.