Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (60)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14530)

  • Android NDK Build FFMPEG in 2021

    19 janvier 2023, par Kyros

    I'm working on an android app, and I have to convert webm files to mp3.
I really want to make a custom ffmpeg build, because it reduces the ffmpeg executable size to only 2MB.

    


    My library works absolutely fine when running on my PC, but i'm struggling to build it for android... It seems like NDK architecture has changed and tutorials are outdated, and I can't find a proper and recent guide for android compiling...

    


    I also would like to target all architectures (aarch64, armv7, i686, and x86_64)...

    


    I've been on this for hours, fixed many errors, but still nothing has worked ><.&#xA;Please help me ! :

    &#xA;

    PS. I'm compiling on Linux, here is my configuration script :

    &#xA;

    #!/bin/bash&#xA;&#xA;API=31 # target android api&#xA;&#xA;OUTPUT=/home/romain/dev/android/ffmpeg_build&#xA;&#xA;NDK=/home/romain/android-sdk/ndk/23.0.7599858&#xA;TOOLCHAIN=$NDK/toolchains/llvm/prebuilt/linux-x86_64&#xA;SYSROOT=$TOOLCHAIN/sysroot&#xA;&#xA;TOOL_PREFIX="$TOOLCHAIN/bin/aarch64-linux-android"&#xA;&#xA;CC="$TOOL_PREFIX$API-clang"&#xA;CXX="$TOOL_PREFIX$API-clang&#x2B;&#x2B;"&#xA;&#xA;./configure \&#xA;    --prefix=$OUTPUT \&#xA;    --target-os=android \&#xA;    --arch=$ARCH \&#xA;    --cpu=$CPU \&#xA;    --disable-everything \&#xA;    --disable-everything \&#xA;    --disable-network \&#xA;    --disable-autodetect \&#xA;    --enable-small \&#xA;    --enable-decoder=opus,vorbis \&#xA;    --enable-demuxer=matroska \&#xA;    --enable-muxer=mp3 \&#xA;    --enable-protocol=file \&#xA;    --enable-filter=aresample \&#xA;    --enable-libshine \&#xA;    --enable-encoder=libshine \&#xA;    --cc=$CC \&#xA;    --cxx=$CXX \&#xA;    --sysroot=$SYSROOT \&#xA;    --extra-cflags="-0s -fpic"&#xA;&#xA;make&#xA;make install&#xA;

    &#xA;

  • ffmpeg-X264 encode —BGRA to AVFrame(ffmpeg) and viceversa ? for IOS

    6 avril 2012, par Asta ni enohpi

    Am working Video Processing in IOS(iphone/ipod/ipad) Using Objective c. i am using AVFoundation Framework to Capture Video . i want to Encode/decode those video frame using ffmpeg-libx264. i have compiled ffmpeg-x264 lib for ios. i got kCVPixelFormatType_32BGRA from AVFoundation.

    my problem is
    1.How to convert kCVPixelFormatType_32BGRA to AVFrame for enode using avcodec_encode_video ?

    2.How to convert AVFrame to kCVPixelFormatType_32BGRA @ decode side from avcodec_decode_video2 ?

    Please help me to start above process or give path for working tutorial .Thanks in advance.

  • ffmpeg-X264 encode —BGRA to AVFrame(ffmpeg) and viceversa ? for IOS

    6 avril 2012, par Asta ni enohpi

    Am working Video Processing in IOS(iphone/ipod/ipad) Using Objective c. i am using AVFoundation Framework to Capture Video . i want to Encode/decode those video frame using ffmpeg-libx264. i have compiled ffmpeg-x264 lib for ios. i got kCVPixelFormatType_32BGRA from AVFoundation.

    my problem is
    1.How to convert kCVPixelFormatType_32BGRA to AVFrame for enode using avcodec_encode_video ?

    2.How to convert AVFrame to kCVPixelFormatType_32BGRA @ decode side from avcodec_decode_video2 ?

    Please help me to start above process or give path for working tutorial .Thanks in advance.