Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (56)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7702)

  • How to extract jpeg/png images from RTSP stream without encoding the whole stream ?

    25 septembre 2020, par Rune Aspvik

    I am building a video system in Node.js based on IP cameras. They all output RTSP streams and MJPEG streams. However the Mjpeg is unreliable for web browser display snapshots and so I want to create my own snapshots. I'm using FFMPEG to record the RTSP stream so that's been my tool. So far I've tried two options :

    


      

    1. FFMPEG with two outputs :
    2. 


    


    ffmpeg -i rtsp://.... -c copy output.ts -r 1/5 -s 640x360 -f image2 -update 1 -y snap.jpg

    


    This works really well, but it's using a lot of resources since even though I only need a low res image every 5 sec, it encodes the whole stream.

    


      

    1. Get the snapshot on demand using FFMPEG and the output.ts as input.
    2. 


    


    ffmpeg -sseof -1 -i output.ts -frames:v 1 -f image2 pipe:1

    


    This also works really well, and doesn't require a lot of resources. However I believe it's not the most elegant solution.

    


    How can I use option 1, but without doing the resource demanding solution ?

    


  • How do I use the CLI interface of FFMpeg from a static build ?

    13 décembre 2019, par deek0146

    I have added this (https://github.com/kewlbear/FFmpeg-iOS-build-script) version of ffmpeg to my project. I can’t see the entry point to the library in the headers included.

    How do I get access to the same text command based system that the stand alone application has, or an equivalent ?

    I would also be happy if someone could point me towards documentation that allows you to use FFmpeg without the command line interface.

    This is what I am trying to execute (I have it working on windows and android using the CLI version of ffmpeg)

    ffmpeg -framerate 30 -i snap%03d.jpg -itsoffset 00:00:03.23333 -itsoffset 00:00:05 -i soundEffect.WAV -c:v libx264 -vf fps=30 -pix_fmt yuv420p result.mp4
  • ffmpeg says "No such file or directory" [closed]

    10 octobre 2020, par srvnk

    Kindly see this screenshot

    


    ffmpeg says no such file or directory but the file exists. I want to extract a frame/thumbnail from that video (pre1.mp4). I have installed ffmpeg by sudo snap install ffmpeg. My ubuntu version is 18.04.4 LTS. I also tried ffmpeg -ss 00:00:01 -i pre1.mp4  -vframes 1 -q:v 2 output.jpg but same error.

    


    I am using php to generate the thumbnail. I tried functions - exec, shell_exec and system to run the command but same error. After getting error I tried to run the command in terminal but the error is same.