Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (106)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (14556)

  • How can I pipe the filename into an ffmpeg command ?

    20 octobre 2019, par Lee Probert

    I would like to run this command in the terminal :
    ffmpeg -i  -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 on every mp3 file in a folder.

    The input and output could be the same (an overwrite), but if this is not possible, if there was a way to take the filename and append _converted maybe ?

    I’m not a bash expert, but I know that I need to pipe the results of an ls command into the ffmpeg command using a variable perhaps ?

  • FFMPEG pipe input filenames from command line on windows

    6 novembre 2019, par Andrew Harris

    I am concatenating a bunch of files on a windows 10 box into a single file using "ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4". This works fine when I generate list.txt in the required format.

    What I am wanting is to not have to generate the file first and instead pipe the filenames in as the examples here show for *nix.

    I have tried as follows "ffmpeg -f concat safe 0 -i <(for %i in (*.ts) do @echo file ’%i’) -c copy output.mp4" but I get "The system cannot find the file specified.".

    Any idea’s how to make this work ?

  • ffmpeg - pipe video output as a normal file

    23 novembre 2019, par Erik Tetland

    I want to be able to write ffmpeg video output to stdout as if it was a normal file. I want the video to be able to be seekable (streamable videos can’t), but I don’t want to save it to disk immediately.

    If I use
    cat *.jpg | ffmpeg -f image2pipe -r 30 -i - -f mov - > 1.mp4
    It errors because the mov format isn’t streamable
    muxer does not support non seekable output

    Is there some way to force ffmpeg to pipe it as if it was a normal file ?