Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (57)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (9682)

  • How to add watermark in a video in Android Application ? [on hold]

    20 décembre 2014, par user3581447

    I am developing an Android app in which I have to include a function to watermark in an existing video file. I searched more but didn’t get any perfect solution. Can anyone help me ?

  • Play RTMP WITH MPEG-TS format on Android

    10 septembre 2015, par Guy Levin

    I’m trying to play a video from a rtmp stream on Android using JavaCV and ffmpeg

    I’m able to see videos from other sources like rtsp

    Do you have any idea what could be the reason ?

    Thanks

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