Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (98)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (13512)

  • Xamarin.Android.FFmpeg not compressing video from Nugat 7.1

    16 juillet 2018, par Mr Shoubs

    We have been using Xamarin.Android.FFmpeg successfully for some time to compress videos, it works up to Nougat 7.0 (API level 24), but it doesn’t seem to support the latest Android versions :

    • Oreo | 8.1.0 | API level 27
    • Oreo | 8.0.0 | API level 26
    • Nougat | 7.1 | API level 25

    Package Name : Xamarin.Android.FFmpeg v1.0.32

    We use the following options :

    string[] cmds = new string[] {
     "-y",
     "-i",
     inputFilepath,
     "-strict", "experimental",
     "-vcodec", "libx264",
     "-preset", "ultrafast",
     "-crf","30", "-acodec","aac", "-ar", "44100" ,
     "-q:v", "20",
     "-vf",
     "mp=eq2=1:1.68:0.3:1.25:1:0.96:1",
     ouputFile,
    };

    string cmdParams = string.Join(" ", cmds);

    FFMpeg.Xamarin.FFMpegLibrary.Run(Xamarin.Forms.Forms.Context, cmdParams, loggerAction);

    We’ve searched for alternatives, but nothing seems obvious. Does anyone know how to resolve this issue or suggest an alternative library/approach (even a paid for one) ?

    EDIT :

    We note a message on the read me read me which states :

    For Android 6.0 onwards, use Xamarin.Android.MP4Transcoder Android 6.0
    onwards, text relocations are strictly prohibited, many source files
    used in ffmpeg use text relocations so ffmpeg will never run on future
    android builds unless they rewrite large library and replace them with
    alternative of text relocations. For this, only alternative is to use
    Android’s native Mp4 transcoder.

    However, we’ve tried using :

    Xamarin.MP4Transcoder.Transcoder.For720pFormat().ConvertAsync
    Xamarin.MP4Transcoder.Transcoder.For960x540Format().ConvertAsync

    but this doesn’t solve our requirements for compression.

  • Binaries for android FFmpeg and SOX

    23 novembre 2022, par kc ochibili

    I have been trying for two weeks to find binaries for ffmpeg and Sox (armeabi,armeabiv7, x86) but i did not succeed. I tried building it my self from this project but I still did not succeed. 
Can you help me build the project and then share the binaries ?

    



    I would heartly appreciate.
Here is the github repository
https://github.com/guardianproject/android-ffmpeg

    


  • Stream a sequence of images from C++ to Android

    1er août 2015, par Philies

    I’m receiving a sequence of image raw data (32bit, bmp, video) on my C++ server and I want to display these images on my Android device (MediaPlayer).

    I’ve installed ffmpeg on my c++ server and tried this ffmpeg command, but I don’t receive anything (tested with VLC player app on Android), because I don’t know how to specify the input.

    ffmpeg -an -f rawvideo -vcodec rawvideo -pix_fmt rgb32 -i -vcodec libx264 -tune zerolatency -preset ultrafast -bsf:v h264_mp4toannexb  http://192.168.1.20:8090/test.mp4

    Does anyone have an idea how to achieve this or have already experience to achieve that ?