Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

Sur d’autres sites (11858)

  • Create 1080p videos with javacv and ffmpeg or alternate lib

    20 novembre 2012, par 501 - not implemented

    is there a option in JavaCV to capture 1080p videos from images ?
    If i use the FFmpegFrameRecorde, i only find 480p.

    Or is there a alternate library for Java ?
    I want to use it to create a video from kind of pictures (with zooming and rotating effects)

    greetings

    //EDIT

    Okay,
    now i've tested a very simple code :

       FrameRecorder  recorder = FFmpegFrameRecorder.createDefault("out.avi", 1920, 1080);
       recorder.start();
       recorder.record(iplImage);
       recorder.stop();

    and it's works ! But the file is very large (10sec around 300MB...)

    Now i want to add a codec like xvid. I've get the following eyxception :

    com.googlecode.javacv.FrameRecorder$Exception: codec not found

    But i've installed the xvid paket. Must i add the codec in a special folder like the ffmpeg bin ?

  • FFMPEG [SHELL CMD] cutting last x frames [SHELL CMD] combining videos

    25 avril 2014, par user1708604

    .mp4 videos in 1920 x 1080, 25 frames / second
    different length

    Two commands needed :

    0) One command should delete x frames from the end of the video and create a new video without the last x frames as .mp4, save it in folder y
    1) One command should combine x amount of videos to one new video

    Just for info : I am using Python to call ffmpeg.
    Platform : Windows or CentOS.

    Many thanks in advance. :)

  • Resize video to same size

    16 mai 2014, par Max Grigoriev

    I have a list of video files with different resolutions. And I should to change them to 1920x1080. It’s easy to make using ffmpeg and scale filter but result video is wrong aspect ratio. If I use aspect ratio then output resolution isn’t fullhd. Is it possible to change resolution to best available like scale="’if(gt(a,16/9),1920,-1)’ :’if(gt(a,16/9),-1,1080)’"
    and all remaining space is filled in black color ?