Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (71)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

Sur d’autres sites (6104)

  • Streaming a RTP video stream from FFmpeg

    7 septembre 2019, par Erfan

    I have a Pelco Camera mounted on top of my building. I created a multicast using the camera through RTP and want to use ffmpeg to get that live video stream to my machine (OS : Linux)

    Works for Audio

    I have the code for the audio which is the following :

    ffmpeg -re -f lavfi -i aevalsrc="sin(400*2*PI*t)" -ar 8000 -f mulaw -f rtp rtp ://127.0.0.1:1234

    ffplay rtp ://127.0.0.1:1234

    Thank You

  • Why does Travis compiled PyInstaller bundle fail when calling local ffmpeg ?

    20 janvier 2021, par August Janse

    I am writing a Python application that uses Travis CI to bundle with PyInstaller and deploy a binary. The application runs a bundled binary of svtplay-dl* as a subprocess. svtplay-dl itself uses shutil.which()) to locate ffmpeg and run that in a subprocess.

    


    If I download the Travis build and run it on my own computer, the ffmpeg call results in an error.

    


    Built on Xenial (16.04)

    


    ERROR: Something went wrong: /usr/bin/ffmpeg: /tmp/_MEI0gRAWr/libz.so.1: version `ZLIB_1.2.9' not found (required by /usr/lib/x86_64-linux-gnu/libpng16.so.16)


    


    The error is different, however, if I get Travis to build on a different distribution :

    


    Built on Bionic (18.04)

    


    ERROR: Something went wrong: /usr/bin/ffmpeg: symbol lookup error: /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0: undefined symbol: FcWeightFromOpenTypeDouble


    


    Focal (20.04) succeeds without error. So do builds on my local machine. But I remain puzzled as for why the different build environments would matter. If svtplay-dl uses which, it should be enough that my local machine has ffmpeg in PATH. How can this behavior be explained ?

    


    *I should probably import it as a Python module instead, but that is beside the point. I only wish to know why this happens, not any workarounds.

    


  • Reading avfoundation video device using FFMPEG library

    22 juin 2015, par Nipun

    I want to capture the screen on mac machine and dump into a file.

    ffmpeg -f avfoundation -i "1" -f mpeg1video screendump.mp4

    So I would like to achieve the same using programming in C/C++ using ffmpeg library.

    How do I receive the stream in a C/C++ program using FFMPEG library ?

    How do I write the received video into a file ?