Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (107)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (16000)

  • PHP-FFMPEG How can I display the progress ?

    24 mars, par Mondi

    Formathttps://github.com/PHP-FFMpeg/PHP-FFMpeg?tab=readme-ov-file#formats

    


    


    The callback provided for the event can be any callable.

    


    


    I'm just learning and I don't understand how to make a callback. Is it possible to give an example, please ?

    


  • avcodec/libvpxdec : Check that display dimensions fit in the storage dimensions

    7 juin 2017, par Michael Niedermayer
    avcodec/libvpxdec : Check that display dimensions fit in the storage dimensions
    

    Fixes assertion failure
    Fixes : 2112/clusterfuzz-testcase-minimized-4526878557732864

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/libvpxdec.c
  • Rotate Android video for display on web

    16 juin 2017, par Kim

    I’m building a website. I’m trying to load my first video onto it. This mp4 video is in portrait orientation and was recorded on an Android device.

    When I load this mp4 onto my website, it plays perfectly (in portrait orientation) on Chrome ; however, it plays in landscape orientation on Firefox & IE. I realise that this is because Chrome is using the rotation metadata that is stored within the mp4 to play the video in the correct orientation, while FF & IE don’t use this metadata.

    I’ve tried to correct this issue using FFMPEG, and various combinations of the Transpose, Metadata & Rotate commands. I am using MediaInfo to view the metadata associated with the files that I produce using FFMPEG.

    My problem is :
    1) If I use Transpose=1, then on FF & IE & Windows Media Player, the resulting video is actually rotated through 180 degrees, and the metadata shows the file width and depth to be the same as the original file.
    2) If I use -metadata:s:v rotate=0 (I’ve also tried rotate=90), then MediaInfo tells me that the resulting files width & depth are now portrait, but FF & IE & WMP will not play the resulting file. WMP plays the sound but no image, and FF gives an error message "Error Loading This Resource".

    What ffmpeg command do I need to use to convert a portrait MP4 recorded an android device into an mp4 that will play in the correct orientation on Firefox ?

    Thanks in advance