Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (104)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (9611)

  • Nested c language function

    3 juillet 2017, par Saqrag
    #if AV_GCC_VERSION_AT_LEAST(4,3)
    #define av_alloc_size(...) __attribute__((alloc_size(__VA_ARGS__)))
    #else
    #define av_alloc_size(...)
    #endif

    /**
    * Allocate a memory block for an array with av_mallocz().
    *
    * The allocated memory will have size `size * nmemb` bytes.
    *
    * @param nmemb Number of elements
    * @param size  Size of the single element
    * @return Pointer to the allocated block, or `NULL` if the block cannot
    *         be allocated
    *
    * @see av_mallocz()
    * @see av_malloc_array()
    */

    av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb,
    size_t size)
    {
      if (!size || nmemb >= INT_MAX / size)
         return NULL;
      return av_mallocz(nmemb * size);
    }

    I am a c lang primer. I see this function when I read open source. but what kind of function is it ? I have never seen this kind of function before. av_alloc_size(1, 2) and *av_mallocz_array have any relationship ?

  • Ubuntu : Failure in cross-compiling FFMPEG for Android

    28 octobre 2017, par Davood Falahati

    I have followed all the steps described here https://github.com/WritingMinds/ffmpeg-android
    but when I execute the android_build.sh script I face to the following error :

    Unknown option —disable-shared,

    ignored No working C compiler found.

    This exactly happens when it starts to execute ./x264_build.sh

    Can anybody help me with that ?

  • Warning "i686-mingw32-pkg-config not found, library detection may fail" while cross compiling ffmpeg

    12 octobre 2015, par S B

    I get the following warning while trying to cross compile ffmpeg as below

    $ ./configure --enable-gpl --enable-version3 --enable-libgsm --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libmp3lame --enable-libopenjpeg --enable-libopencore_amrwb --enable-libopencore_amrnb --arch=x86 --enable-runtime-cpudetect --enable-static --disable-shared --enable-libxvid --enable-libx264 --target-os=mingw32 --enable-avisynth --enable-w32threads --cross-prefix=i686-mingw32- --cc='i686-mingw32-gcc' --enable-memalign-hack --disable-doc --enable-avfilter --disable-ffplay --disable-ffserver --disable-ffprobe

    Configure ran fine but with the following warning

    License: GPL version 3 or later
    Creating config.mak and config.h...
    libavutil/avconfig.h is unchanged

    WARNING: i686-mingw32-pkg-config not found, library detection may fail.

    How do I provide i686-mingw32-pkg-config to configure ?