Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (43)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5093)

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

     }

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

  • Flv video time is shorter than normal when using flv segment in osmf

    7 janvier 2013, par David

    I am working on a project to use flv segments rather than a normal video clip. We use ffmpeg to split a mp4 file into several flv files with headers. The duration of each flv file is 5 second with 15 fps. Given a 10 minutes of video file, after split it, the osmf player only indicates 9:53 as timescale after all content played.

    The code is very simple, after download each flv segment, we use appendBytesAction(NetStreamAppendBytesAction.RESET_BEGIN) and appendBytes() to join all segments.

    Can anyone help me out ? Thanks a lot.