Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (66)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10660)

  • avformat/mxfenc : Set color siting to 0 for D10-MXF

    6 avril 2018, par Michael Niedermayer
    avformat/mxfenc : Set color siting to 0 for D10-MXF
    

    SMPTE 386M (D-10) lists 4 as value to be used
    SMPTE 377-1-2009 says
    "The definitions of 00h (coSiting) and 04h (Rec 601) are equivalent. The value of 04h is deprecated. New
    MXF encoders shall use the value of 00h instead."

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

    • [DH] libavformat/mxfenc.c
  • Algorithm to draw waveform from audio

    25 septembre 2024, par yayuj

    I'm trying to draw a waveform from a raw audio file. I demuxed/decoded an audio file using FFmpeg and I have those informations : samples buffer, the size of the samples buffer, the duration of the audio file (in seconds), sample rate (44100, 48000, etc), sample size, sample format (uint8, int16, int32, float, double), and the raw audio data itself.

    &#xA;&#xA;

    Digging on the Internet I found this algorithm (more here) :

    &#xA;&#xA;

    White Noise :

    &#xA;&#xA;

    White Noise

    &#xA;&#xA;

    The Algorithm

    &#xA;&#xA;

    &#xA;

    All you need to do is randomize every sample from –amplitude to&#xA; amplitude. We don’t care about the number of channels in most cases so&#xA; we just fill every sample with a new random number.

    &#xA;

    &#xA;&#xA;

    Random rnd = new Random();&#xA;short randomValue = 0;&#xA;&#xA;for (int i = 0; i &lt; numSamples; i&#x2B;&#x2B;)&#xA;{&#xA;    randomValue = Convert.ToInt16(rnd.Next(-amplitude, amplitude));&#xA;    data.shortArray[i] = randomValue;&#xA;}&#xA;

    &#xA;&#xA;

    It's really good but I don't want to draw that way, but this way :

    &#xA;&#xA;

    audacity

    &#xA;&#xA;

    Is there any algorithm or idea of how I can be drawing using the informations that I have ?

    &#xA;

  • How to build Soltion and Run Without ffmpeg shared DLL(Static Build Solution)

    11 avril 2018, par P Akhtar

    I want to build a solution in visual studio 2009 and run exe without FFMPEG Shared DLL. Simply I want to build my solution static

    Similar Question
    visit : How to use ffmpeg so that there would be no need in including its dlls in your app folder ?

    I built ffmpeg static lib and than I got

    libavdevice.a
    libavcodec.a
    libavfilter.a
    libavformat.a
    libavutil.a
    libpostproc.a
    libswresample.a
    libswscale.a

    But Issue is how I Can use it there is linking error-> like error LNK2001 : unresolved external symbol __ltod3 and and other more