Recherche avancée

Médias (91)

Autres articles (15)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (2718)

  • Merge commit '90adbf4abf336f8042aecdf1e18fdf76a96304b1'

    20 février 2019, par James Almer
    Merge commit '90adbf4abf336f8042aecdf1e18fdf76a96304b1'
    

    * commit '90adbf4abf336f8042aecdf1e18fdf76a96304b1' :
    cook : Use the correct table for 6-bit stereo coupling

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cookdata.h
  • Use FFMPEG to Save Live CCTV Video Streams that Has Wrong FPS Encoded, Published by Video Clips instead of Frames, and With Nonnegligible Frame Loss

    6 mars 2023, par Crear

    I want to use FFMPEG command line to archive live CCTV video stream (no audio) from Newark Citizen Virtual Patrol (https://cvp.newarkpublicsafety.org) for traffic analysis, previously I was using (I'm just a noob in these commands)&#xA;os.system(&#x27;ffmpeg -t 24:00:00 -i &#x27;&#x2B;address&#x2B;&#x27; -hide_banner -c:v copy -s 640x360 -segment_time 00:15:00 -f segment -strftime 1 -reset_timestamps 1 "&#x27;&#x2B;OutPath&#x2B;camera_location&#x2B;&#x27;_%Y-%m-%d-%H-%M-%S.mp4"&#x27;) to archive the videos everyday and segment them into 15-min-long videos.

    &#xA;

    However, there are several issues.

    &#xA;

      &#xA;
    1. The FPS read from the video stream is actually slower than it really is. For example, it's actually 12, but the decoded result says 8, so every time it generates a 15-min-long video, it only pasts 10 11 mins in the real world.
    2. &#xA;

    3. Due to unstable frame loss, the FPS is not a stable value either. Therefore, when I manually set the FPS, it usually make the video has wrong length, and sometimes when the stream froze, it keeps waiting because it hasn't finished 15-min-long video. Something I noticed is that it may generate a 15-min-long video, which contains both night and day, started from perhaps 2AM but ended at 8AM.
    4. &#xA;

    5. The live CCTV video stream is not frame by frame, but video clip by video clip. Therefore, when I set the -use_wallclock_as_timestamps to 1, the video will be ultra-fast playing the short video clip, then frozen for the rest of time until receiving next video clip.
    6. &#xA;

    &#xA;

    The only thing I can think of is to re-distribute the frames evenly between the timestamp of receiving the current video clip and the timestamp of receiving the prior video clip. What parameters can help FFMPEG to fix the FPS and archive correctly ? I am using FFMPEG to save the video instead of using OpenCV to decode the frame and then encode a video because we have huge amounts of cameras and our legacy Xeon processor had trouble encoding so many frames simultaneously.

    &#xA;

    Any suggestion is appreciated !

    &#xA;

  • Capture Image from Serial Camera FFMPEG

    28 mai 2018, par Jomanuel Ponferrada

    I have a serial camera plugged-in on my linux os. I would like to capture image using FFMPEG but the all example are webcam and ip camera. I also visit this link to see the list of devices https://www.ffmpeg.org/ffmpeg-devices.html. But i cant see the serial camera examples. My serial cam location is on /dev/ttyS0.
    In my C++ program i can capture image from my serial camera..

    Tnx for the help in advance :)