Recherche avancée

Médias (91)

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.

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

  • avformat/mpegtsenc : add AVSV format_identifier for AVS standard

    24 août 2021, par Limin Wang
    avformat/mpegtsenc : add AVSV format_identifier for AVS standard
    

    Listing of Registered Identifiers :
    https://smpte-ra.org/registered-mpeg-ts-ids

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/mpegtsenc.c
  • ffmpeg pipe livestream to ffplay

    4 mars 2021, par Dobbelina

    I wonder if it is possible to pipe an internet livestream from ffmpeg to ffplay ?

    &#xA;&#xA;

    Examples to illustrate :

    &#xA;&#xA;

    Livestream to test.mp4 works

    &#xA;&#xA;

    ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4"&#xA;

    &#xA;&#xA;

    Recorded video to test.mp4 and pipe to ffplay works

    &#xA;&#xA;

    ffmpeg -i "https://Some recorded video" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs  -&#xA;

    &#xA;&#xA;

    Livestream to test.mp4 and pipe to ffplay don't work

    &#xA;&#xA;

    ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs  -&#xA;

    &#xA;&#xA;

    I get this error :

    &#xA;&#xA;

    &#xA;

    pipe: : Invalid data found when processing input

    &#xA;

    &#xA;&#xA;

    How do i get "Livestream to test.mp4 and pipe to ffplay" to work so i can watch the livestream&#xA;while it is recording ?

    &#xA;&#xA;

    (If it's possible i mean)

    &#xA;

  • avconv/ffmpeg named pipe multiple sending

    22 janvier 2018, par alextheloafer

    I am using libav-tools for making snapshots from IP camera RTSP stream. I need to make 2 frames and send it to a named pipe. For saving snapshots to a files, I’m using

    avconv -i $url -vsync 1 -vframes 2 -qscale 3 -f image2 img%03d.jpg

    When I want to send snapshot to a pipe, I’m using

    avconv -i $url -vsync 1 -vframes 1 -qscale 3 -f image2 pipe:1>tmppipe

    But how I can send two snapshots ? (With -vframes 2)