Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10557)

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