Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (97)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (7645)

  • How to find proper RTMP URL for input in Ffmpeg ?

    2 février 2019, par Teymur Gahramanov

    I have RTMP URL for Reolink-RLC410 camera :

    rtmp ://111.111.111.111:1935/bcs/channel0_main.bcs ?channel=0&stream=0&user=admin&password=admin

    This URL works perfectly with VLC and OBS, but i can’t use this URL with FFMPEG to capture RTMP stream.

    So, how can i transform this URL to format which is required by FFMPEG ?

    The required syntax is :

    rtmp ://[username:password@]server[:port][/app][/instance][/playpath]

    https://www.ffmpeg.org/ffmpeg-all.html#rtmp

  • Use parameter expansions in a command run from "find | xargs" to prevent output overwriting

    20 février 2019, par Philipp

    I have this bash script that is looking for mp4 files in subfolders with certain names and saves frames of those videos as jpeg.

    #!/bin/bash
    find ../folder -type f -iname '*C00*.mp4' | xargs -I %% ffmpeg -i %% -vf fps=1 -q:v 3 "../frames/_${i%.*}_frame%d.jpg"

    The problem is that everytime the script finishes one video the .jepg output files of the next videos are overwriting the existing ones.

    How can I prevent that ?

  • Cmd - find some files and execute a command on that file

    31 mars 2019, par MrAlex

    In my case, i need to find all .flv files in my drive, transcode them with ffmpeg and then delete them but i don’t know how to run the command on each of them