Recherche avancée

Médias (91)

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • How to overlay two video side by side and play one by one by using ffmpeg

    3 avril 2017, par Saravanan MB

    I used this below command

    ffmpeg -i input1.mp4 -i input2.mp4
     -filter_complex '[0:v]scale=160:240[v1],[v1]pad=320:240[int];[1:v]scale=160:240[v2];
                      [int][v2]overlay=W/2:0[vid];amix=inputs=2 [a]'
     -map [vid] -map [a] -map [vid] -map [a] output.mp4 -y**

    but in output.mp4 the both input videos are playing at the same time. i want to play one by one.

    i want output to be like enter image description here

    i want the output video in the image and it should play one by one

  • ffprobe : support skip_samples packet side data information

    25 mars 2017, par James Almer
    ffprobe : support skip_samples packet side data information
    

    Reviewed-by : Rostislav Pehlivanov <atomnuker@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] ffprobe.c
  • How merge two mp4 videos side by side with the help of FFMPEG and PHP code ?

    20 mars 2017, par student

    Could anybody help me with the php code for FFMPEG to concatenate two mp4 videos and store the concatenated files as an mp4 at any folder in the server ?
    i find command for ffmpeg.but i don’t know how to make it work in php..
    ps : in the orther hand, is there any program like ffmpeg i can use ?