Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (79)

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

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

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

  • How to save a DShow input on a file and simultaneously publish it on rtst stream ?

    18 novembre 2020, par user2586476

    Piping command does not work properly when your input is coming from a device (e.g. a webcam) so you cannot work with 2 output. I need to save the webcam stream on a file (.mkv) and, at the same time, publish it on a rtst server. I tried the following :

    


    ffmpeg -y -f dshow -loglevel info -rtbufsize 2147.48M -i "video=my_camera" -vf hflip,rotate=PI ^
-c:v libx264 -preset fast -crf 25 -pix_fmt yuv420p ^
-minrate 2M -maxrate 4M -bufsize 3.5M -s 1920x1080 -f tee "[f=mkv]'C :\test.mkv'|[f=rtsp]rtsp ://localhost:8554/mystream]"

    


  • FFMPEG concat causing longer duration on joined file

    15 février 2019, par Pit Digger

    I have 5 files. Total duration of files should be 942 seconds based on length of source files. However when joined using ffmpeg concat. End result is 944 seconds. I am unable to pinpoint where are additional seconds coming from. Anyone got such known issue ?

    ffmpeg -f concat -i input.txt -codec copy output.mp4

    and following is input.txt

    file ’0.mp4’ file ’1.mp4’ file ’2.mp4’ file ’3.mp4’ file ’4.mp4’

  • How to use ffmpeg and its options to copy a stream via the m3u8 file at the highest quality possible ?

    27 octobre 2018, par user321627

    I currently have a m3u8 file that I would like to copy the stream at. I am able to stream at 6000 kbps, but when I use the following command on ffmpeg, I get something of low quality :

    ffmpeg -user_agent "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7"
    -i http://link.to.site.m3u8 -c copy file.mkv

    Is there a way to capture the stream to match the quality it is coming in at ? Thanks.