Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (32)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • rtp : Make ff_rtp_codec_id() case insensitive

    5 août 2013, par Wei-Cheng Pan
    rtp : Make ff_rtp_codec_id() case insensitive
    

    Fixes handling of lower case pcmu

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/rtp.c
  • Revision a96af49bab : vp9_subpixel_8t_intrin_avx2.c : make some tables static + fix formatting Change

    19 février 2014, par James Zern

    Changed Paths :
     Modify /vp9/common/x86/vp9_subpixel_8t_intrin_avx2.c



    vp9_subpixel_8t_intrin_avx2.c : make some tables static

    + fix formatting

    Change-Id : Ia62610bff3d63855104366d7860749b6a3cf4577

  • make a video from a subset of images and audio

    30 décembre 2013, par user3146855

    I want to create a video of three images and three audio files but the duration time of each image should be the time of the corresponding audio file.

    Lets say I have three images image_0.png, image_1.png and image_2.png and three audio files audio_0.mp3 (length 10 seconds) , audio_1.mp3 (length 15 seconds), audio_2.mp3 (length 12 seconds).

    I want to create a video showing first image_0.png with audio_0.mp3 for 10 seconds, then image_1.png with audio_1.mp3 for 15 seconds and in the end image_2.png with audio_2.mp3 for 12 seconds.

    I tried to make this with avconv. I tried different variations of -i commands

    avconv -i imageInputFile.png -i audioInputFile.mp3 -c copy output.avi

    nothing worked. Indeed, I could make for each image+audio a single avi video, but I failed concatenating all single avi files... Besides this is not the best way I think because of quality loss.

    How would you do this ? Is this even possible with avconv ?