Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9911)

  • How to use ffmpeg commnad in android with input and output file path ?

    27 mai 2016, par Gaju

    I want use ffmpeg command in android app.i am using this library to start with ffmpeg.

    http://writingminds.github.io/ffmpeg-android-java/

    i have developed a demo app and also run the command

    ffmpeg -version

    this command also giving exact ouput. but when i am giving any file path with name my command always fail for this i am using :

               String cmd[] = new String[]{"ffmpeg", "-i", "/storage/emulated/0/Videos/dheere.mp4", "-c:v", "libx264", "/storage/emulated/0/Videos/dheere2.3gp"};
               execute(cmd);




     private void execute(String cmd[]) {


       try {
           // to execute "ffmpeg -version" command you just need to pass "-version"
           FFMpegApp.getFfmpeg().execute(cmd, new ExecuteBinaryResponseHandler() {

               @Override
               public void onStart() {
                   Log.e("gc", "Command Started");
               }

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

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

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


               @Override
               public void onFinish() {
                   Log.e("gc", "onFinish command");
               }
           });
       } catch (FFmpegCommandAlreadyRunningException e) {
           // Handle if FFmpeg is already running
           e.printStackTrace();
       } catch (Exception e) {
           e.printStackTrace();
       }
    }

    please give me any suggetion how to use command in android ?
    thanks in advance.

  • I am getting input/output error when I am using FFmpeg. Ngnix is working fine status come ok for NGINX [closed]

    10 mars 2021, par Rahul

    Getting error when running FFMPEG Stream command its throwing input output error
Snapped code is below :

    


    ./stream1.sh

ffmpeg -re -i sample.mp4 -vcodec copy -loop -1 -c:a aac -b:a 160k -ar 44100 -strict -2 -f flv rtmp://198.168.0.0/live/1234567890

handler_name : VideoHandler
Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 128 kb/s (default)
Metadata:
handler_name : SoundHandler

rtmp://198.168.0.0/live/1234567890: Input/output error


    


  • ffmpeg pipe input and output in Python

    4 juin 2021, par MinasCham

    I want to use ffmpeg to read an RTSP stream, extract frames via a pipe, do some processing on them with Python and afterwards combine the processed frames via another pipe with the original audio. I'm using the subprocess module in Python to execute the ffmpeg command as well as read and write the frames from and to ffmpeg.

    


    Questions :

    


      

    1. Is it possible to pipe both stdin and stdout so as to extract the frames and then feed them back in after the processing ?
    2. 


    3. Do i also have to pipe the audio separately and feed it with the processed frames or can i simply copy the audio stream when mapping the output ?
    4.