Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (65)

  • 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

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6812)

  • lavf/mpegenc : Print a warning if ac3, pcm_s16be or dts are muxed into mpeg1.

    24 novembre 2013, par Carl Eugen Hoyos
    lavf/mpegenc : Print a warning if ac3, pcm_s16be or dts are muxed into mpeg1.
    

    Some media players don’t play the resulting files.
    The warning should help users to avoid the issues described in ticket #1720.

    • [DH] libavformat/mpegenc.c
  • 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 ?

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

    27 mars 2017, 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 ?