Recherche avancée

Médias (91)

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11393)

  • How to get video rotation angle when metadata rotation is not right ?

    19 août 2019, par sunjinbo

    I have a video file, I get its resolution(3840x2160) and rotation(0) from the below codes :

           MediaMetadataRetriever retr = new MediaMetadataRetriever();
           retr.setDataSource(mVideoFile);
           String height = retr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT);
           String width = retr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH);
           String rotation = retr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION);

    But actullay, the video rotation angle in degrees is not right, it should be 90, 2160x3840 resolution, so my video always failed to display correctly in my android application.

    Interestingly, some 3rd-party video players (such as VLC) can detect the actual rotation for this video file, and its display is ok either, how did they do that ?

  • ffmpeg - converting to MJPEG with FPS filter doesn't change FPS

    14 septembre 2022, par Jordan Sim

    I'm trying to change the FPS of a video, and convert it to MJPEG with ffmpeg. The following doesn't change the actual FPS of the video (read through ffprobe), although it does seem to change the number of frames. I've tried :

    


    ffmpeg -i in.mp4 -filter:v fps=60 -vcodec mjpeg -q:v 2 -r 60 out.mjpeg

    


    As well as encoding to an intermediate file (which has the correct FPS), and then encoding to mjpeg.

    


    ffmpeg -i in.mp4 -filter:v fps={fps} -preset veryslow -crf 0 -r 60 temp.mp4
ffmpeg -i temp.mp4 -vcodec mjpeg -q:v 2 out.mjpeg


    


    This seems specific to mjpeg in particular - why isn't my video FPS changing ?

    


  • dnxhddec : cleanup frame header parsing

    2 octobre 2015, par Christophe Gisquet
    dnxhddec : cleanup frame header parsing
    

    Rely more on the actual syntax from the specs (also seen in the
    encoder code).

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dnxhddec.c