Recherche avancée

Médias (91)

Autres articles (52)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (3784)

  • VP9 encoding using FFmpeg [migrated]

    20 mai 2013, par Computer_Engineer

    I want to ask if ffmpeg supports VP9 encoding, and if not : how can I encode VP9 videos ?
    I try using the command :

    ./ffmpeg-vp9 -y -i /home/mc/test.mkv -t 00:00:30 -c:v libvpx-vp9 -strict -2 -quality good -b:v 600k -speed 16 -rc_lookahead 25 -pass 1 2.webm

    but it shows an error in splitting the command appeared (for vp9).

  • how do I write to avlibs AVOptions from C

    10 avril 2018, par vinay samuel

    I want to do the equivalent of the following command line from a C program.

    ffmpeg ..... -movflags frag_keyframe

    I have narrowed it down to setting some fields in priv_class in AVOutputFormat somehow. But I don’t understand how AVOptions work, I could not find a good example that explains how AVOptions are set and used. I did come across av_opt_set but if I set the name field to "movflags" what is the val and do I set a separate option for frag_keyframe or is it embedded in the flags set for "movflags" ?
    Thanks in advance for your time.

  • how do I write to avlibs AVOptions from C

    19 mai 2014, par vinay samuel

    I want to do the equivalent of the following command line from a C program.

    ffmpeg ..... -movflags frag_keyframe

    I have narrowed it down to setting some fields in priv_class in AVOutputFormat somehow. But I don’t understand how AVOptions work, I could not find a good example that explains how AVOptions are set and used. I did come across av_opt_set but if I set the name field to "movflags" what is the val and do I set a separate option for frag_keyframe or is it embedded in the flags set for "movflags" ?
    Thanks in advance for your time.