Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (104)

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

  • ffmpeg command to merge two mp4 file is not working

    27 février 2018, par Arpit Pagaria

    Hi I am trying to merge two mp4 file using ffmpeg commad. I found below command from somewhere. I have copy this complete command and paste this in cmd. But got error "Error initiaNo such filter : ’\’.Error Initializing complex filters.Invalid argument". Please help me out how to run this command ?

    ffmpeg -i GYM_1.mp4 -i Snow_1.mp4 -filter_complex "\
    [0:v]setsar=1[0v]; \
    [1:v]scale=720:576:force_original_aspect_ratio=decrease,setsar=1,\
        pad=720:576:(ow-iw)/2:(oh-ih)/2[1v]; \
    [0v][0:a][1v][1:a]concat=n=2:v=1:a=1[outv][outa] \
    " -map "[outv]" -map "[outa]" \
    -c:v libx264 -crf 23 \
    ffmpeg1.mp4
  • configuring android to run ffmpeg command programmatically

    16 juillet 2013, par Abdul Mateen

    I am unaware with ffmpeg, and wants to run ffmpeg command on android terminal.
    What are the basic steps to configure android so that it can run ffmpeg command through android application program ?

    Thanking you !...

  • include ffmpeg-command in c++ program

    6 octobre 2016, par Sweetspell

    I have a c++ program that reads rendered images from shared-memory and writes them into a pipe(mkfifo), so that I can capture them with ffmpeg and stream them as live-video over ffserver. For my stream to work I have to start the program and the ffmpeg-command seperately.
    I asked myself if there isn’t a possibility to include the ffmpeg into the program and avoid the pipe.

    My ffmpeg command :

    ffmpeg -re -f -rawvideo -s 800x600 -pix_fmt rgb24 -i myfifo http://localhost:8090/feed1.ffm

    My question is :

    What would be the best way to include the ffmpeg-command into the c++-program ? Is there some other idea to improve this solution ?

    Any help is greatly appreciated. Thanks in advance.