Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (60)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5618)

  • Video processing to support different web players and qualities [closed]

    15 mai 2013, par Linas

    I am trying to accomplish something similar to youtube player.

    The biggest issues I'm facing now is how should I process user uploaded video file.

    For example since i want to switch between 240p, 360p, 480p and 720p I need to convert uploaded video file to 4 different files for each resolution, and because not all browsers can play mp4 i need ogg, mp4, webm, so that makes 12 video files, and say if it takes 10 minutes to process 1h video file it would take me about 2h just to process that file which is insane. I know that youtube is ussing cloud servers to process each video file and they have a lot of processing power but I think there some kind of trick to this.

    So my question is what can i do about this, and how does youtube deal with this ?

    My second question is ffmpeg suited for this kind of work, and if so why does this command takes pretty much for ever to finish, I ran this command on a 720p 3minutes long video file and after 15minutes of processing I just canceled the process.

    ffmpeg -i hd.webm a.mp4

    This one on the other hand took about 7 minutes to finish but it generated 200mb video file out of 25mb file

    ffmpeg -i hd.webm -c:v libx264 -preset ultrafast a.mp4

  • If input is raw rgb24 data, how to fill structure of x264_encoder_encode() inorder to make a success conversion

    22 mai 2012, par 鍾漢雄

    So the question is

    If I have raw rgb data, with r, g, b, r, g, b, ...kind of alignment, and I know it width and height, I need to convert it to h264 raw, how to fill struct for x264_picture_t *pic_in ?

  • How to reencode a h264 wiiU to a standar format video

    25 juin 2016, par didix16

    I’m trying to make a bridge between wiiU and web interface to view the video h264 signal. I’m not familiar with video programming but I’m searching some info about it. Following this documentation :

    If it, can someone tell me how ? I’m programming the bridge in C++.

    Oh yes, at the moment I’m capturing the data from udp socket, so I just need transform the incoming data detailed in sc-vstrm.html documentation into some web stream video standard.

    Thank you so much guys :).