Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (66)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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 translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (10572)

  • Revision 1a8d45f309 : Extend skip_txfm flag into array to cover YUV planes Change-Id : Ieae182d72d625d

    6 août 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_context_tree.h


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_pickmode.c



    Extend skip_txfm flag into array to cover YUV planes

    Change-Id : Ieae182d72d625d0d3fd4ed7c7d24cb521a0f21b0

  • Revision 9da4cd94f5 : Merge "Extend skip_txfm flag into array to cover YUV planes"

    11 août 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_pickmode.c



    Merge "Extend skip_txfm flag into array to cover YUV planes"

  • how to convert mp3 with one cover image to mp4 in java

    9 juillet 2014, par yzandrew

    I want to convert a mp3 with one cover image to mp4 in java. I do some research on goole and stackoverflow and know that ffmpeg can do it without decoding and encoding the audio stream :

    ffmpeg -loop 1 -shortest -y -i image8.jpg -i sound11.amr -acodec copy \
    -vcodec mjpeg result.avi

    I want to achieve this in java ? I know there is a java library Xuggle which wraps ffmpeg. I also check the examples of Xuggle, but can not find one without decoding/encoding the mp file. Is it possible to use the library to do this ? If so, how ?