Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (2940)

  • Revision 29902 : - mise à jour de l’appel des #SAISIE (celles qui risquent un plantage en ...

    16 juillet 2009, par marcimat@… — Log

    - mise à jour de l’appel des #SAISIE (celles qui risquent un plantage en priorité)
    - mise à jour du plugin.xml

  • PHP ffmpeg Image to Video

    2 mars 2021, par Metin Saraç

    I want to create a Video with Image in php ffmpeg.

    


    My code is as follows,

    


    $video = $ffmpeg->open('image1.jpg');
$video->filters() ->resize(new FFMpeg\Coordinate\Dimension(1080, 1080))->synchronize();
$format = new FFMpeg\Format\Video\X264();
$format->setKiloBitrate(1000)->setAudioChannels(2)->setAudioKiloBitrate(256);
$video->save($format, 'video.avi');


    


    I want total video duration and background sound to my code, but I couldn't find a suitable solution. Can you help me ?

    


    Respects.

    


  • Batch merge videos two-by-two

    18 février 2021, par dellyice

    I have a directory with 1000+ video files. I'd like to concatenate them two-by-two.

    


    An alphabetical ordering of the files give the desired pairs, e.g., the input files

    


     filename_1.mp4
 filename_2.mp4
 filename_3.mp4
 filename_4.mp4
 ...


    


    should result in output files

    


     filename_1-2.mp4
 filename_3-4.mp4
 ...


    


    They input files all have the same dimensions and formats.

    


    How can I write a batch script invoking ffmpeg to achieve this ?