Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (95)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

  • How to apply reverb effect in Video in Android programatically ?

    7 août 2021, par Anil Kanani

    I want to apply Reverb effect to a Video in Android. Is it possible in Android or with Jetpack Compose ? Any quickfix to the problem ?

    


    What I have tried :

    


       val reverb = PresentReverb(0, simpleExoplayer.audioSessionId)
   //Doesn't work.


    


  • Android place multiple images and text inside video at desired position and frame

    19 septembre 2018, par MathaN

    I am new for video editing in android, I am finding a solution to edit a video in Android application, unfortunately I cannot get any examples for that, I need to place Image or text on video in a desired frame and also need to save it. Just like InShot android app , I tried to add simple text using ffmpeg but it tooks to much of time to save a video. Is there any alternative way to do that ?

  • Android Ffmpeg- No command working for merging images to produce video

    23 juillet 2015, par Workaholic Er

    I have compiled ffmpeg for android using ndk r10e on os x but it does not produce ffmpeg.so. All other libraries are generated. I have been searching this for over a week. I have tried various methods to execute ffmpeg command but none were successful. I used

    Process p = Runtime.getRuntime().exec(
                   getBaseContext().getApplicationInfo().nativeLibraryDir);

    Process p = Runtime.getRuntime().exec(Environment.getExternalStorageDirectory().getPath());
    Process p = Runtime.getRuntime().exec("chmod 700 /data/data/com.example.ffmpegtem/app_bin/ffmpeg");

    All resulted in IOException. I also tried Shell Callback method provided by Github android ffmpeg library project which resulted in Nullpointerexception. I have written read/write permission.

    Convert 1 image to video code :

    DataOutputStream os = new DataOutputStream(chperm.getOutputStream());
    os.writeBytes("-loop 1 -i " + inpath + " -c:v libx264 -t 15 -pix_fmt yuv420p -vf scale=320:240 "+outpath);

    What am I doing wrong ? Please help