Recherche avancée

Médias (91)

Autres articles (63)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (3630)

  • How to encode Chrome OS compatible H.264 video with ffmpeg + x264 ? [closed]

    15 décembre 2012, par shaurz

    When I encode videos with ffmpeg + x264 and try to play them on Chrome OS the audio is OK but the video is just grey with random looking stuff at the top. The videos play fine in VLC though. The command I'm using is :

    ffmpeg -i "$1" -vcodec libx264 -preset slow -crf 22 -vf yadif,hqdn3d,mp=eq2=0.8 \
                  -acodec aac -ac 2 -ar 48000 -ab 128k -strict -2 -f mp4 "$2"
  • How to encode Chrome OS compatible H.264 video with ffmpeg + x264 ? [closed]

    15 décembre 2012, par shaurz

    When I encode videos with ffmpeg + x264 and try to play them on Chrome OS the audio is OK but the video is just grey with random looking stuff at the top. The videos play fine in VLC though. The command I'm using is :

    ffmpeg -i "$1" -vcodec libx264 -preset slow -crf 22 -vf yadif,hqdn3d,mp=eq2=0.8 \
                  -acodec aac -ac 2 -ar 48000 -ab 128k -strict -2 -f mp4 "$2"
  • Frame Accurate Seeking in WebM

    11 janvier 2016, par SapphireSun

    I’m trying to do a somewhat tricky thing with WebM. I am trying to encode a stack of 256 biological images as a WebM. The time dimension of motion is very similar to the space dimension of the image stack so the compression ratios are insanely good. However, I am having trouble decoding the movie frames. I know that WebM uses an IPB predictive coding scheme, but I was reading several blog posts and discussion groups from WHATWG from 2011, and they said that frame accurate seeking was working in Chrome at that time.

    When I do video.currentTime = 0, I correctly get this :

    tissue slice at time zero

    However, if I do video.currentTime = 0.34 (for example) I get something that looks like this :

    enter image description here

    It looks like I’m getting a random poorly predicted frame. Am I just encoding the video wrong ? When I play it normally it looks fine.

    I encoded the video using 256 pngs using ffmpeg compiled with libvpx using the VP8 codec.

    ffmpeg -y -framerate 60 -start_number 0 -pattern_type glob -i '*.png' -qmin 10 -qmax 42 out.webm

    References to the WHATWG and some other info from 2011 :

    WHATWG discusses frame accuracy :

    https://lists.w3.org/Archives/Public/public-whatwg-archive/2011Jan/0372.html

    BBC Tech Director talking about frame accuracy :

    http://www.bbc.co.uk/blogs/bbcinternet/2011/02/frame_accurate_video_in_html5.html