Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (64)

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

  • Anomalie #3024 (Fermé) : spip_loader.php et IE8 (oui.... les pros du C/S traditionnels l’exigent !)

    3 mai 2015, par b b

    IE8 n’est plus supporté depuis le 8 avril 2014, cf http://fr.wikipedia.org/wiki/Internet_Explorer#Internet_Explorer_8 => on ferme.

  • lavc/qtrle : Use AV_PIX_FMT_PAL8 for 1-bit video

    29 décembre 2015, par Mats Peterson
    lavc/qtrle : Use AV_PIX_FMT_PAL8 for 1-bit video
    

    This commit fixes the lack of palettized display of 1-bit video
    in the qtrle decoder. It is related to my commit of
    lavf/qtpalette, which added 1-bit video to the "palettized video"
    category. As far as I can see, everything works fine, but comments are
    of course welcome.

    Below are links to sample files, which should now be displayed properly
    with bluish colors, but which were previously displayed in black &
    white.

    Matroska :
    https://drive.google.com/open?id=0B3_pEBoLs0faNjI0cHBMWDhYY2c
    Earth Spin 1-bit qtrle.mkv

    QuickTime (mov) :
    https://drive.google.com/open?id=0B3_pEBoLs0faUlItWm9KaGJSTEE
    Earth Spin 1-bit qtrle.mov

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/qtrle.c
    • [DH] tests/ref/fate/qtrle-1bit
  • Multiple running with executable built with pyinstaller

    2 avril 2020, par seokrae.kim

    I build my main.py to exe by pyinstaller like this.

    &#xA;&#xA;

    pyinstaller main.py --add-binary C:\sources\untitled\venv\Lib\site-packages\cv2\opencv_videoio_ffmpeg420_64.dll;.&#xA;

    &#xA;&#xA;

    It is simple RTSP receiver program so it need opencv_ffmpeg binary to run.&#xA;Running command like this

    &#xA;&#xA;

    main.exe -address rtsp://127.0.0.1/profile1/media.smp&#xA;

    &#xA;&#xA;

    It works I expected.&#xA;But when the process running in multiple, (I mean more than 2 same process running)&#xA;all process not responding and shutting down.

    &#xA;&#xA;

    I try clone whole result (dist folder content) to another folder&#xA;and run process another path but result is same. like this.

    &#xA;&#xA;

    D:\main1\main.exe -address rtsp://127.0.0.1/profile1/media.smp&#xA;D:\main2\main.exe -address rtsp://127.0.0.2/profile1/media.smp&#xA;

    &#xA;