Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (50)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • How to compile ffmpeg using libx264 static library ?

    10 octobre 2020, par bearhang

    I had installed x264 static and dynamic library on Linux.

    


    And I compile ffmpeg by ./configure --enable-gpl --enable-libx264 && make.

    


    The executable program link to the x264 dynamic library

    


    I want to know how to config ffmpeg link to the static library

    


  • can't open video files with opencv in windows

    13 novembre 2018, par Barracuda

    I’m trying to open a video file in my program written in C++ using Visual Studio. I’ve tried adding the path to the environment using the answers to this question. But it still doesn’t work. What else do I have to do ?

    I’ve installed the opencv using this link. I have also downloaded the static ffmpeg using this link.

  • How do I edit the PKG_CONFIG_PATH environment variable on windows ?

    2 janvier 2024, par Project PowerPoint

    I'm trying to use pkg-config to combine files from ffmpeg into a library so I can use them as such in my program. However, I can't seem to figure out how to get pkg-config to look in another location.

    


    It's worth mentioning that I'm compiling this program into a node API addon for a node project, so I'm using pkg-config from NPM and CMake-js.

    


    Currently, pkg-config looks in C:/Strawberry/c/lib/pkgconfig

    


    I want it to look in C:/ffmpeg/lib/ as well.
I've tried looking for how to do this, but I can only find how to do it on linux.

    


    In the one stackoverflow question which is similar, the link provided is broken : link to question , broken link provided

    


    Otherwise, I find conflicting info saying pkg-config in windows doesn't consider PKG_CONFIG_PATH environment variable. I can't test this if I can't find out how to actually do it.

    


    I've also tried copying the ffmpeg folder inside C:/Strawberry/c/lib/pkgconfig so it can find it. Even then, it 'cant find libavcodec.pc' despite being located in that folder (albeit several folders deep).

    


    How do I change the environment variable for pkg-config ?