Recherche avancée

Médias (91)

Autres articles (73)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (8897)

  • fate : specify EC-off for damaged inter samples

    27 mars 2023, par J. Dekker
    fate : specify EC-off for damaged inter samples
    

    The previous commit allowed turning on error correction for interlaced
    samples. Turning it off amounts to a no-op for FATE. These samples
    should be tested with EC1-3 (guess_mvs/deblock/favor_inter)
    additionally.

    Signed-off-by : J. Dekker <jdek@itanimul.li>

    • [DH] tests/fate/filter-video.mak
    • [DH] tests/fate/video.mak
  • lavc/vdpau_hevc : add function to find exact vdp_profile for REXT

    27 juin 2020, par ManojGuptaBonda
    lavc/vdpau_hevc : add function to find exact vdp_profile for REXT
    

    Add vdpau_parse_rext_profile and use profile constraint flags to
    determine the exact vdp_profile for HEVC_REXT.

    If profile mismatch is allowed, select Main profile by default.

    Add build object in Makefile for h265_profile_level dependency.

    Signed-off-by : Philip Langdale <philipl@overt.org>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/vdpau_hevc.c
  • ffmpeg2theora oggfwd not working with icecast2

    6 décembre 2011, par achilles

    I have a camera streaming (mjpeg) in http://192.168.x.x/image (where x are the rest of the IP). I start my icecast2 server (Ubuntu 10.10) and then I stream using :

    ffmpeg2theora -f mjpeg http://192.168.x.x/image -o /dev/stdout - | oggfwd localhost 8000 password /test

    The mountpoint is created but the video is not showing on Firefox. I do see the video box but it's just infinitely showing the "thinking" icon and video does not show.

    If I download a proper ogg file and do

    cat proper_ogg_file.ogg | oggfwd localhost 8000 password /test

    I see the video on the icecast server's website.

    In addition I did :

    ffmpeg2theora -f mjpeg http://192.168.x.x/image -o test_video.ogg

    Once I stop the process (CTRL+C) and go to my Desktop where the video is saved and open it with VLC or any other media player, it plays the portion of the stream that I allowed to be recorded all the way up to pressing CTRL+C.

    If I take that file and use the previous method :

    cat test_video.ogg | oggfwd localhost 8000 password /test

    I get the same issue as when I was directly piping the camera to stdout and then to oggfwd. So therefore I assume this is a "conversion" to ogg issue ? Can anybody help ? Any idea why i can't do that ?