Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (86)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6857)

  • Android MediaCodec change resolution

    3 mars 2015, par user3265561

    I am passing the output of a MediaExtractor into a MediaCodec decoder, and then passing the decoder’s output buffer to an encoder’s input buffer. The problem I have is that I need to reduce the resolution from the 1920x1080 output from the decoder to 1280x720 by the time it comes out of the encoder. I can do this using a Surface, but I am trying to target Android 4.1 so will need to achieve this another way. Does anyone know how to change the resolution of a video file using MediaCodec but in a way that is compatible with 4.1 ?

  • ffmpeg resizing video puts it at wrong resolution

    16 décembre 2015, par agmcleod

    I have a 1080p video that i’m trying to resize for an iOS app upload. So i tried scaling it to the iPhone 6 resolution of 1334x750 :

    ffmpeg -i WrathTrailer.mp4 -strict -2 -vf scale=1334:750 WrathTrailer1334x750.mp4

    The output file comes to 1333x750. iTunes connect won’t accept it. Any ideas ?

  • Quick way to 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 in-memory way to extract frames in low resolution ?