Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (96)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10921)

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