Recherche avancée

Médias (91)

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • ffmpeg stream file to crtmp - How to change the resolution ?

    29 novembre 2014, par Martin

    I’m using ffmpeg - streaming local file to crtmpserver (or other server) :

    ffmpeg.exe -re -i file.avi -vcodec libx264 -preset veryfast -acodec aac -strict experimental -f flv rtmp://256.257.0.0:1935/flvplayback/live

    How to change the resolution ? File has a resolution 1920x1080, but I want to send only 640x360.

    -s 640x360 does not work.

  • Quick way to extract extract frames in low resolution

    29 mars 2013, par Lescott

    I have a video (640x320) which I need to decode in frame array (BufferedImage's in 100x100 size).

    I can solve this problem with IMediaReader and MediaListenerAdapter by the following slow way.

    // create reader and add listener
    reader = ToolFactory.makeReader("video.mp4");
    reader.setBufferedImageTypeToGenerate(BufferedImage.TYPE_3BYTE_BGR);
    reader.addListener(new ImageSnapListener());

    //change scale of pictures in onVideoPicture
    public void onVideoPicture(IVideoPictureEvent event) {
     ...check the stream number...
     results.add(event.getImage().getScaledInstance(100, 100, Image.SCALE_SMOOTH));
    }

    But this way is really slow. Even without images scaling it works 30 seconds on 54 MB file, whereas ffmpeg can extract 100x100 frames in 8 seconds.

    ffmpeg -vf select='eq(pic_type\,I)' -i video.mp4 -s 100x100 /tmp/frames/%0d.bmp

    So, is there any faster way to make Xuggler extract frames in low resolution ?

  • Revision 86140 : Résolution du second problème : on déplace tous les styles qui concernent ...

    17 novembre 2014, par rastapopoulos@… — Log

    Résolution du second problème : on déplace tous les styles qui concernent le fullscreen dans la feuille commune. Cette fonctionnalité marche donc tout aussi bien dans le site public. Au passage on renforce certains styles, notamment l’onglet avec l’icône fullscreen, pour qu’il soit toujours à la bonne taille (en pixel toujours), et avec l’icône (car ça virait en FOCUS avec Tinytypo… hum hum).