Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (37)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

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

  • fate : split off lossless video and audio FATE tests into their own files

    14 décembre 2011, par Diego Biurrun

    fate : split off lossless video and audio FATE tests into their own files

  • fate : split off Ut Video codec FATE tests into their own file

    14 décembre 2011, par Diego Biurrun

    fate : split off Ut Video codec FATE tests into their own file

  • Querying an audio/video file for information

    4 juin 2013, par TRiG

    I want a PHP function which receives the path to a file and returns an array of information about it. The PHP file can call FFmpeg.

    Returned data should be something like

    Array(
       [mime]          => video/ogg
       [container]     => Ogg
       [video]         => Theora
       [audio]         => Vorbis
       [duration]      => 20.3 // in seconds
    )

    Array(
       [mime]          => audio/ogg
       [container]     => Ogg
       [video]         =>
       [audio]         => FLAC
       [duration]      => 3
    )

    Array(
       [mime]          => image/gif
       [container]     => GIF
       [video]         => Animated GIF
       [audio]         =>
       [duration]      => 2
    )

    Array(
       [mime]          => video/webm
       [container]     => WebM
       [video]         => VP8
       [audio]         => Vorbis
       [duration]      => 900.7
    )

    false // not a media file

    I've never worked with FFmpeg or with PHP's shell_exec() function, but it seems that FFmpeg will give information about videos (or audio files) in a fairly hard-to-parse format. I assume that something like this is possible, though.