Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

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

Sur d’autres sites (7354)

  • Evolution #3155 (Nouveau) : jquery color obsolète

    21 janvier 2014, par b b

    il semble qu’on pourrait se passer du script prive/javascript/jquery.colors.js d’après la doc de jQuery UI :

    jQuery UI bundles the jQuery Color plugins which provides color animations as well as many utility functions for working with colors.

    http://jqueryui.com/animate/

  • How to encrypt webm file using Clear Key to play with Google's Shaka Player ?

    23 janvier 2017, par Nam Pham

    I’m developing a small system which will be used to streaming protected content over the web with MSE/EME API.

    This is some tools I’m using :

    I can create .webm file and package them using shaka-packager into mpd file in order to feed to shaka-player. But following by the Clear Key section in the Shaka docs I have to encrypt webm file require pair of KeyId and Key.
    By using webm_crypt, I can created encrypted content by follow this document on 2.2.7 but I have no idea how to get the key pairs for the shaka-player DRM system.

  • Swscale color space convert interlaced frames ?

    29 mai 2012, par Nioreh

    I am writing an application that exports video that I have captured (PAL SDI). The original color space is uyvy (4:2:2). When I convert the frames with swscale to 4:2:0 and encode with avcodec I get color bleeding between the fields. I suspect this is from swscale not being aware of the frame being interlaced. Here is an example of a part of a bob-deinterlaced frame from my exported video showing one of the fields :

    color bleeding between fields

    As you can see, the color bleeds from the other field. How do I keep this from happening ? I have looked at the library and tried to find anything in swscale that tells it to respect the fields, but I haven't found anything.

    I store each field in seperate buffers, so I can process the fields individually before hand if that would help.

    Thankful for any help on this !

    Regards
    Carl

    Edit : Basically, what I want is to output PAL DV. I suspect swscale is able to somehow produce this type of interlaced 420, since ffmpeg (the application) can handle this (I think).