Recherche avancée

Médias (91)

Autres articles (43)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • How to link the ffmpeg transcoding process information into a vb6 GUI app ?

    19 décembre 2019, par melaos

    i’m playing with a vb6 gui frontend for ffmpeg and as of now all i can do is to call the ffmpeg via cmd.exe which will shows the command prompt while the whole process is still running. And i thought this was the norm seeing how WinFF, another pascal based frontend gui for ffmpeg works.

    But i was blown away when i saw this other GVC gui which has a progress bar and everything.

    So basically, i’m looking into a way how i could cleanly hide the whole command prompt and link the transcoding progress to a progress bar into my gui.

    So here’s my plan, I’m thinking of finding a win32 api function which i can call the cmd line and yet hide it, and from another discussion here, i think i would have to read the log file to get the ffmpeg progress information.

    So which function should i call for the win32 api ?
    And does anyone knows of a better/easier way to get this done ?
    thanks

    Updates :

    In case anybody is interested, i find a nice class module on how to grab the cmd output into my vb6 app, and it’s by none other than the great joacim :)

  • Static link ffmpeg with Rust in msys2

    31 janvier 2024, par anonymous

    I'm trying to build ffmpeg with Rust with the library ffmpeg-next and staticlly link ffmpeg on Windows inside msys2 ucrt64 environment,
When compile with cargo build --release
It throws many undefined reference errors

    


    undefined reference to `ENGINE_load_builtin_engines'
undefined reference to `GdipBitmapSetPixel'
undefined reference to `EVP_PKEY_CTX_free'


    


    The setup :

    


    pacman -S --needed $MINGW_PACKAGE_PREFIX-{rust,ffmpeg}
mkdir project 
cd project
cargo init --bin
cargo add ffmpeg-next -F static


    


    The entrypoint main.rs

    


    use ffmpeg_next;
fn main() {
    ffmpeg_next::init().unwrap();
}


    


    Build command

    


    cargo build --release


    


  • lavfi : set the link hwframes context before configuring the dst input

    21 juin 2016, par Anton Khirnov
    lavfi : set the link hwframes context before configuring the dst input
    

    The destination filter might expect the hw frames context to be already
    set (this is the case e.g. for hwdownload).

    • [DBH] libavfilter/avfilter.c