Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

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 (6497)

  • How to create videos from images using ffmpeg android ? [on hold]

    30 mai 2016, par Gaju

    Hello every one I want to do these three things :

    1. Create videos form no of images and play as a slide show ?
    2. Merge Audio and Video in video file.
    3. Merge two video ?

    For this I am using ffmpeg command using android ffmpeg library. I uesd many command also create video from images but its duration for images not well i some times finish video in 1 second or sometimes it will show only one images and also sometimes it play slides at a very fast speed. So what i do for this ? and I also tried with Javacv, but not getting any exact solution.

  • FFMPEG - Delete unused files or streaming without saving files

    8 septembre 2020, par M.Demiral

    I need to get live video from a device. I have to play the video on the browser. live video can be received as RTP or UDP.

    


    Since there is no support for VLC, I published the video by getting it via RTP with FFMPEG and creating a web server with Nginx. But later I realized that it is recording video tracks to disk. This is a situation I don't want.

    


    I can show it in web browser using HLS.js. It is saving to HDD when I use the following command.

    


    ffmpeg -i udp://127.0.0.1:5000 -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -max_muxing_queue_size 1024 -f flv rtmp://127.0.0.1/show/stream


    


    I don't want it to save to HDD.

    


    When the codec I understand is changed, it saves the video to HDD.
I think I prevented it from recording like this. But I don't know how to play from the web browser.

    


    ffmpeg -i udp://127.0.0.1:5000 -strict -2 -max_muxing_queue_size 1024 -f flv rtmp://127.0.0.1/show/stream


    


    Is there any way to delete unused files or stream without saving to disk ?

    


    P.S.

    


    First question as it may be needed : How to play a live video in the browser ?

    


  • ffmpeg is not installed in my docker container

    10 octobre 2022, par user16917650

    I have write below commands in my Dockerfile, for installing ffmpeg in a docker container.

    


    RUN apt-get -y update && apt-get -y upgrade && apt-get install -y --no-install-recommends ffmpeg


    


    While I'm building my Dockerfile it will show me ffmpeg install in my image, when i run my image as a container and manually enter in that image it will show me ffmpeg command is not found.

    


    Can you please help me on this ?