Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (94)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9215)

  • How to save decoded raw rgba frames using ffmpeg ?

    13 novembre 2019, par peetonn

    I need to transcode mp4 video to a raw video frames stored in a file.
    I’m trying this command but it fails with Unable to find a suitable output format for 'test.rgba' :

    ffmpeg -i test.mp4 -vcodec rawvideo -pix_fmt rgba -an test.rgba
  • I want to save a video with effects applied on it. OnSucccess is not calling [duplicate]

    10 novembre 2016, par shriya

    This question already has an answer here :

    This is command string which i want to process.

    String[] command = new String[]"ffmpeg -y -i " + old_video_path + " -strict experimental -vf curves=vintage -s 240x320 -r 30 -aspect 4:3 -ab 48000 /storage/emulated/0/video.mp4" ;
    executeFFmpeg(command) ;

    private void executeFFmpeg(String[] cmd) {
       try {
           ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {

               @Override
               public void onStart() {
                   Log.e("Progress", "onStart");
               }

               @Override
               public void onProgress(String message) {
                   Log.e("Progress", "onProgress");
               }

               @Override
               public void onSuccess(String message) {
                   Log.e("Progress", "onSuccess");
               }

               @Override
               public void onFailure(String message) {
                   Log.e("Progress", "onFailure" + message);
               }

               @Override
               public void onFinish() {

                   Log.e("Progress", "onFinish");

               }
           });
       } catch (FFmpegCommandAlreadyRunningException e) {
           // Handle if FFmpeg is already running
       }
    }

    in Log i am getting onProcess call and onFininsh call. How do i write code to save this video in sdcard and where ?

  • Draw on Android video and save

    23 novembre 2015, par YI YANG

    I am a beginner to the Android meida programming, so if I have any problem please tell me, thank you very much.

    Recentally, I saw an IOS version App called V1 Sports ! it allows you to record a video and then draw lines, circles or any shapes on the video. Those shapes are stored, next time when you open your video, the shapes are still there, unless you clear the shapes overlay on the video.

    I am wondering how to implement those functions on an Android deveice, it is so cool. Use ffmpeg or something like that ? I do not know where to start. Please tell me some hints Thank you very much.