Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (40)

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

  • avformat/cache : Avoid int-overflow in cache compare function

    9 novembre 2015, par Bryan Huh
    avformat/cache : Avoid int-overflow in cache compare function
    

    cache protocol indexes its cache using AVTreeNodes which require a cmp
    function for inserting and searching new cache-entries. This cmp
    function expects a 32-bit int return value (negative, zero, or positive)
    but the cache cmp function returns an int64_t which can overflow the
    int, giving negative numbers for when it should be positive, vice versa.
    This manifests itself only for very large files (e.g. 4GB+)

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/cache.c
  • How can I capture RTSP stream with FFMPEG continously and later decode a video

    17 avril 2020, par İsmet

    I have got a rtsp stream from camera. I don't want rtsp to mp4 file convert because that give a file like 10minute video,1 hour video. But I wanna search a specific date in stream (e.g 17.04.2020 15.00.00-16.15.00). So it have integrity data.

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Summary : how can I storage this rtsp stream and convert a video type (mp4,avi) with specific time part of data when I want it ?

    &#xA;&#xA;

    Note : Sorry for my weak Englis, I hope image tells what I want.

    &#xA;

  • Get decibel array from audiofile

    16 avril 2020, par R. Adang

    I am creating a React Native app and want to show list of decibel numbers based on an audio file.&#xA;so the goal is -> input : audiofile(mp3,wav etc) output : array of decibels for samples with X milliseconds. I know about FFMPEG, but I do not know how to use it to get the array. I see there is a waveform option, but this returns a png instead of the volume data.

    &#xA;