Recherche avancée

Médias (91)

Autres articles (102)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Why Recode Video FFMPEG on windows Allway Error ?

    9 janvier 2012, par ALexF

    i download ffmpeg in : http://ramiro.arrozcru.org/ffmpeg-vfwcap-noflip.7z

    and run it with commanline : ffmpeg -r 25 -f vfwcap -i 0 output.avi

    but allway error is

    ffmpeg -r 25 -f vfwcap -i 0 output.avi
    FFmpeg version SVN-r22915, Copyright (c) 2000-2010 the FFmpeg developers
    built on Apr 20 2010 00:09:08 with gcc 4.4.2
    configuration : —enable-memalign-hack —cross-prefix=i686-mingw32- —cc=ccach
    - i686-mingw32-gcc —arch=i686 —target-os=mingw32 —enable-gpl —enable-libx264
    — enable-pthreads
    libavutil 50.14. 0 / 50.14. 0
    libavcodec 52.66. 0 / 52.66. 0
    libavformat 52.61. 0 / 52.61. 0
    libavdevice 52. 2. 0 / 52. 2. 0
    libswscale 0.10. 0 / 0.10. 0
    [vfwcap @ 012eba60]Could not connect to device.
    0 : Error number -19 occurred

    Link Image :http://nh8.upanh.com/b2.s8.d2/9b09371490590cdabef397ea7705b304_39810848.programmanager20120109110016.png

    why it error, can you fix my commnaline

  • FFMPEG in android issue

    9 janvier 2012, par Antu

    I have successfully compiled the FFMPEG library to android using NDK.
    (using Rock Player FFMPEG implementation)http://www.rockplayer.com/download/rockplayer_ffmpeg_git_20100418.zip

    I know that FFMPEG supports .avi, divX, mov ect. But I created a mediaplayer and tried to run them but I was not able to play them. I is this the right way to use the FFMPEG library. Can Any one Help.I am able to play defaut video, mp4, 3gp etc. Here is the code for mediaplayer

      public native String  stringFromJNI();
         static {
            System.loadLibrary("ffmpeg");
            System.loadLibrary("ffmpeg-test-jni");
                }
       @Override
         public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);


       setContentView(R.layout.main);

       TextView  tv =(TextView) findViewById(R.id.textView1);
       tv.setText( stringFromJNI() );


       System.gc();

       Log.d("Video FFmpeg ", "**");

       getWindow().setFormat(PixelFormat.TRANSLUCENT);
       String filepath = Environment.getExternalStorageDirectory()+"/simple.avi";

       Log.d("File path", filepath);

       MediaController mc = new MediaController(this);

       VideoView video=(VideoView) findViewById(R.id.video);
       mc.setMediaPlayer(video);
       video.setVideoPath(filepath);
       video.setMediaController(mc);
       mc.show();
       //video.setVideoPath("/mnt/sdcard/Movies/Ishq-Hothon-Se.3gp");

       video.start();    
       View nextButton = findViewById(R.id.button1);
       nextButton.setOnClickListener(this);
       }



     @Override
     public void onClick(View v) {
     // TODO Auto-generated method stub
     Intent i=new Intent(this,NextVideo.class);
      startActivity(i);

     }

     }
  • FFMPEG - Correct command line parameters to create a H.264 Streaming MP4 from a set of images

    5 janvier 2012, par Adam

    I have no problems viewing a video created by my current parameters in a HTML5 browser, Flash player, Windows Phone 7, Android Phone, etc. However, they won't display on iPhone or iPad. If I modify the video using Super and select "Enable Streaming" checkbox they work on iPhone and iPad suddenly. We are suspecting that my command line parameters are incorrect for enabling h.264 streaming and are instead generating a "progressive download" video.

    I'm pretty new to FFMPEG and don't understand a lot of the parameters. Can anyone help correct my existing parameters, or maybe provide the missing parameters, etc ?

    Thanks in advance.

    My current FFMPEG command line paramters are :

    ffmpeg.exe 
     -r 30 
     -threads 4 
     -f image2 
     -i .\frame%05d.jpg 
     -i audioFile  
     -acodec aac 
     -ab 128k 
     -ar 44100
     -vcodec h264 
     -crf 27 
     -coder 1 
     -flags +loop 
     -cmp +chroma 
     -partitions +parti4x4+partp8x8+partb8x8 
     -me hex 
     -subq 5 
     -me_range 16 
     -g 60 
     -keyint_min 25 
     -sc_threshold 40 
     -i_qfactor 0.71 
     -b_strategy 1 
     out.mp4