Recherche avancée

Médias (91)

Autres articles (83)

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

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9523)

  • fate/iamf : print stream group information

    3 mars 2024, par James Almer
    fate/iamf : print stream group information
    

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/iamf.mak
    • [DH] tests/ref/fate/iamf-5_1_4
    • [DH] tests/ref/fate/iamf-7_1_4
    • [DH] tests/ref/fate/iamf-ambisonic_1
    • [DH] tests/ref/fate/iamf-stereo
  • fate/mov : print stream group information for iamf tests

    3 mars 2024, par James Almer
    fate/mov : print stream group information for iamf tests
    

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/mov.mak
    • [DH] tests/ref/fate/mov-mp4-iamf-5_1_4
    • [DH] tests/ref/fate/mov-mp4-iamf-7_1_4
    • [DH] tests/ref/fate/mov-mp4-iamf-ambisonic_1
    • [DH] tests/ref/fate/mov-mp4-iamf-stereo
  • ffplay option to specify interface there to join mcast group then playing sdp [closed]

    2 mars 2024, par user3296957

    I am trying to listen mcast stream using ffplay, and I have such sdp file :

    &#xA;

    m=video 6000 RTP/AVP 96&#xA;c=IN IP4 224.0.1.107&#xA;a=rtpmap:96 H265/90000&#xA;

    &#xA;

    I am using such command to play stream

    &#xA;

    ffplay -protocol_whitelist file,udp,rtp -i rtp_265mc.sdp&#xA;

    &#xA;

    Such command succeeds in unicast mode, but in mcast mode I have several interfaces&#xA;and wrong one is used to join mcast group. In gstreamer it can be fixed by multicast-iface&#xA;option.&#xA;For example such command succeeds :

    &#xA;

    IFACE="enx00e04c31112e" &#xA;gst-launch-1.0 -v udpsrc multicast-group=224.0.1.107 auto-multicast=true port=6000 multicast-iface=$IFACE ! queue ! "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H265, payload=(int)96" ! rtph265depay ! h265parse ! avdec_h265 ! queue ! videoconvert ! fpsdisplaysink&#xA;

    &#xA;

    The same stream that I use, can be generated using such gstreamer command :

    &#xA;

    gst-launch-1.0 videotestsrc ! video/x-raw,width=2048,height=1200 ! videoconvert !\&#xA;  nvh265enc preset=low-latency-hp rc-mode=cbr gop-size=16 max-bitrate=2000 !\   &#xA;  rtph265pay config-interval=1 pt=96 ! udpsink host=224.0.1.107 port=6000 auto-multicast=true&#xA;

    &#xA;

    How can I force ffplay to use specific interface, or can somebody show string&#xA;to play such stream using ffmpeg ?

    &#xA;