Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (61)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6374)

  • 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