Advanced search

Medias (17)

Tag: - Tags -/wired

Other articles (94)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    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;

  • Soumettre améliorations et plugins supplémentaires

    10 April 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert?

    4 February 2011, by

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel; un seul document ne peut être lié à un article dit "média";

On other websites (10995)

  • FFMpegCore .Net cuts off the fist few ( 1.5) seconds of audio

    28 May 2024, by Tim

    I want to use FFMpegCore to convert some audio files to raw pcm. I noticed that this always cuts off 1.5 seconds of my audio from the start. I check my input stream, saved it to HD all good. If use it from cli with the same arguments everything seem fine. I tried -ss 0, no luck. This behavior is observed with .wav (RIFF (little-endian) data, WAVE audio, Microsoft PCM, 16 bit, stereo 44100 Hz), same issue with different sample rate. I tested mp3 works fine.

    


    public async Task<memorystream> ConvertToPcmStreamAsync(Stream inputStream)&#xA;{&#xA;    var outputStream = new MemoryStream();&#xA;    &#xA;    var audioInput = new StreamPipeSource(inputStream);&#xA;    var audioOutput = new StreamPipeSink(outputStream);&#xA;&#xA;    await FFMpegArguments&#xA;        .FromPipeInput(audioInput)&#xA;        .OutputToPipe(audioOutput, options => options&#xA;            .WithCustomArgument("-ss 0 -f s16le -acodec pcm_s16le -ac 1"))&#xA;        .ProcessAsynchronously();&#xA;&#xA;    // Reset the position of the memory stream to the beginning&#xA;    outputStream.Position = 0;&#xA;&#xA;    return outputStream;&#xA;}&#xA;</memorystream>

    &#xA;

  • how to use x264 dll in another project

    7 February 2024, by Hadi Rasekh

    I want to use x264 in my project. There is some line in the code said:

    &#xA;

    `/* Application developers planning to link against a shared library version of

    &#xA;

      &#xA;
    • libx264 from a Microsoft Visual Studio or similar development environment
    • &#xA;

    • will need to define X264_API_IMPORTS before including this header.
    • &#xA;

    • This clause does not apply to MinGW, similar development environments, or non
    • &#xA;

    • Windows platforms. */`
    • &#xA;

    &#xA;

    But I don't get this line:&#xA;define X264_API_IMPORTS before including this header

    &#xA;

    We can create x264 dll by its configuration and make

    &#xA;

        ./configure --enable-shared&#xA;    make&#xA;

    &#xA;

    but I can not use the dll in my Qt Project.

    &#xA;

    I can make my own dll (in another code) and use it in the project.&#xA;But when I start to use x264 dll in my project I get the following error:

    &#xA;

        C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:&#xA;    &#x27;pulldown_frame_duration&#x27; was not declared in this scope&#xA;    qDebug() &lt;&lt; pulldown_frame_duration[1];&#xA;             ^&#xA;

    &#xA;

  • how to use x264 dll in another project

    7 February 2024, by Hadi Rasekh

    I want to use x264 in my project. There is some line in the code said:

    &#xA;

    `/* Application developers planning to link against a shared library version of

    &#xA;

      &#xA;
    • libx264 from a Microsoft Visual Studio or similar development environment
    • &#xA;

    • will need to define X264_API_IMPORTS before including this header.
    • &#xA;

    • This clause does not apply to MinGW, similar development environments, or non
    • &#xA;

    • Windows platforms. */`
    • &#xA;

    &#xA;

    But I don't get this line:&#xA;define X264_API_IMPORTS before including this header

    &#xA;

    We can create x264 dll by its configuration and make

    &#xA;

        ./configure --enable-shared&#xA;    make&#xA;

    &#xA;

    but I can not use the dll in my Qt Project.

    &#xA;

    I can make my own dll (in another code) and use it in the project.&#xA;But when I start to use x264 dll in my project I get the following error:

    &#xA;

        C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:&#xA;    &#x27;pulldown_frame_duration&#x27; was not declared in this scope&#xA;    qDebug() &lt;&lt; pulldown_frame_duration[1];&#xA;             ^&#xA;

    &#xA;