Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (29)

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

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

  • 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

Sur d’autres sites (5170)

  • Revision ac980b71cf : Improve sign consistency. Fix warning on windows : signed/unsigned mismatch on l

    23 avril 2013, par Johann

    Changed Paths :
     Modify /vp9/vp9_dx_iface.c



    Improve sign consistency.

    Fix warning on windows : signed/unsigned mismatch on lines 415, 454

    Comparison was between size_t data_sz >= int index_sz on 415 and
    unsigned int data_sz >= int index_sz on 454. Both might be changed to
    size_t but that would be tracing and replacing all comparisons is
    outside the scope of this change.

    In the rest of these two functions ensure unsigned values are used
    consistently.

    Change-Id : I922b399ceca612a92f44b9d1d331c1c6bae9d768

  • lavfi/telecine : show time base change too

    25 avril 2013, par Paul B Mahol
    lavfi/telecine : show time base change too
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_telecine.c
  • Extract undecoded audio payload from song file ?

    6 juin 2012, par DataSurfer

    What tools are available to extract the raw undecoded audio payload from a song file ?

    I am looking for a solution that will work on wma, m4a, mp3, and ogg files.

    One of the purposes is to be able to calculate the md5sum of the audio payload.

    I tried ffmpeg -i <song file="file"> -f md5 -</song> but this actually does a decoding pass which is not desired. Also this seems to produce different results depending on the versions of the decoders in use.

    I tried ffmpeg -i <song file="file"> -acodec copy - > <raw payload="payload" file="file"></raw></song> but ffmpeg complains that it does not know the desired output format even though copy is explicitly specified.

    I've tried various incarnations of -map_metadata -1 but the documentation is obtuse at best.

    In the end the ideal is to have an stdout of the raw UNdecoded audio portion of a song file.

    Any ideas ?