Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (20121)

  • lavc/flac_parser : use a custom FIFO implementation

    29 décembre 2021, par Anton Khirnov
    lavc/flac_parser : use a custom FIFO implementation
    

    FLAC parser currently uses AVFifoBuffer in a highly non-trivial manner,
    modifying its "internals" (the whole struct is currently public, but no
    other code touches its contents directly). E.g. it does not use any
    av_fifo functions for reading the FIFO contents, but implements its own.

    Reimplement the needed parts of the AVFifoBuffer API in the FLAC parser,
    making it completely self-contained. This will allow us to make
    AVFifoBuffer private.

    • [DH] libavcodec/flac_parser.c
  • Youtube-dll how to get a direct download link to the merged file without creating a temp file on server

    11 juillet 2019, par CeylonDomains Solutions

    Is there any way to create a direct download link to the merged file without creating a temp file on the server in youtube-dll ?

    youtube-dll -f 255+160 https://youtu.be/p-flvm1szbI

    The above code will merge the file and output the merged file.

    I want to allow users to directly download the merged file to their computers — without creating any temp file on my server. Is this possible ?

    (Creating a temp file and then letting the user download it is already possible.)

  • Custom Reading Callback Function for FFMPEG I/O

    19 septembre 2015, par Joe Allen

    I need to create a custom callback function that can read contents of a file in the form of a std::string into a uint8_t * buf. I tried multiple different methods found around the internet but it works on some file and breaks the application on others.

    Here is the function definition for the callback for the reading function :

    static int readCallback(void* opaque, uint8_t * buf, int buf_size)

    Here is how I am calling the readCallback function from the code :

    uint8_t * avio_ctx_buffer = NULL;
    avio_ctx_buffer = (uint8_t *) av_malloc(avio_ctx_buffer_size);
    avio_ctx = avio_alloc_context(avio_ctx_buffer, avio_ctx_buffer_size,0, &audio, &readFunction1, NULL, NULL);

    audio is a variable that contains the audio file in the form of a std::string