Recherche avancée

Médias (91)

Autres articles (22)

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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (3788)

  • macos video editing library with custom curving

    20 octobre 2017, par samuelius

    Looking for a video editing solution to be used in a macos app.
    Main goals are :

    • overlaying text/images on top of video
    • stitching several video fragments with common transitioning effects (fade, dissolve, wipe) controlling the curve of the effect (i.e. custom easing)

    Right now I’m considering several possible options of achieving this - AVFoundation, FFmpeg, GPUImage. Shifting towards FFmpeg as it seems I’ll have to code the least with it.

    Haven’t been able to find any examples of custom curving with it though. Will I have to do that myself, i.e. cut videos into images and apply effects framewise or I’m just missing something ?

    I’m also opened to any other suggestions in case this isn’t doable with ffmpeg solely (without manual frame manipulation).

  • is it necessary in Anaconda for Matplotlib to install ffmpeg for animation saving ?

    2 mai 2018, par Vasyl Kolomiets

    For animation saving I have read some propositions
    1) manual installing ffmpeg this way :

     conda install -c conda-forge ffmpeg

    2) manual installing ImageMagick and changing matplotlib configuration file "matplotlibrc" this way :

    #animation.ffmpeg_args: ''         # Additional arguments to pass to ffmpeg
    #animation.avconv_path: 'avconv'   # Path to avconv binary. Without full path
                                      # $PATH is searched
    #animation.avconv_args: ''         # Additional arguments to pass to avconv
    #animation.mencoder_path: 'mencoder'
                                      # Path to mencoder binary. Without full path
                                      # $PATH is searched
    #animation.mencoder_args: ''       # Additional arguments to pass to mencoder
    #animation.convert_path: 'convert' # Path to ImageMagick's convert binary.
    animation.convert_path: F:\Games\ImageMagick-7.0.7-Q16\magick.exe
                                      # On Windows use the full path since convert
                                      # is also the name of a system tool.

    where line with pass to installed ImageMagick was added manually

    animation.convert_path: F:\Games\ImageMagick-7.0.7-Q16\magick.exe

    Two questions :
    1 - what way is better for Anaconda ?
    2 - really Anaconda has no better way ????

  • avformat/mux : be less strict with bitstream filter failures

    31 octobre 2017, par James Almer
    avformat/mux : be less strict with bitstream filter failures
    

    This makes the autobsf feature behave the same as the manual
    bitstream filtering in ffmpeg.c

    Fixes ticket #6794

    Reviewed-by : rcombs
    Reviewed-by : Carl Eugen Hoyos <ceffmpeg@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c