Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (76)

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

  • fate : Add tests for RealAudio 1.0 (14.4) and RealAudio 2.0 (with 28.8)

    21 juillet 2014, par Katerina Barone-Adesi
    fate : Add tests for RealAudio 1.0 (14.4) and RealAudio 2.0 (with 28.8)
    

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] tests/fate/real.mak
    • [DH] tests/ref/fate/ra3-144
    • [DH] tests/ref/fate/ra4-288
  • Scaling Application for video decoding using ffmpeg

    6 juillet 2020, par jasoos

    I am building an application to read multiple IP camera streams (rtsp) and run different Machine Learning Algorithms over it in real time. For each camera stream,

    &#xA;

      &#xA;
    1. I spawn an ffmpeg process which continuously break the rtsp streams&#xA;into frames and store them as images (JPEG). The streams use H.264&#xA;encoding. I am taking 1 frame every second as output.
    2. &#xA;

    3. Message queues corresponding to models are given the message&#xA;containing location of the file.
    4. &#xA;

    5. Models keep on picking up the file and drawing inferences
    6. &#xA;

    &#xA;

    The problem I am facing is the CPU usage by ffmpeg decoding process. For real time inference without any loss of frames, I have to beef up my server by a core for every 2 camera streams. Is there any optimization I am missing for ffmpeg ?

    &#xA;

    I am using Intel Xeon Gold processor with Ubuntu 18.04 OS

    &#xA;

  • How to get video start time with libvlc

    7 juillet 2015, par 0xbaadf00d

    I’m trying to sync multiple videos based on the real time they were saved at.

    For playing the video, I ended up with libvlc, but now i’m unable to read the metadata that contains the time at which the video starts.

    I would use the start time to calculate offsets for videos, so that i can sync them with each other.

    I created the video from an rtsp stream with the ffmpeg command

    ffmpeg -i <stream path="path"> -timestamp now output.mp4
    </stream>

    looking at the file with ffprobe, I can see that it contains the correct timestamp in creation_time.

    But this I am unable to read with libvlc.

    Is there a way to save the real wallclock start time on the video in such a way that i can read it from libvlc ?

    Other suggestions that tell me how to sync two videos are welcome as well.