Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (70)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (12548)

  • avfilter/vf_yadif : add missing "This file is part of FFmpeg"

    27 septembre 2015, par Michael Niedermayer
    avfilter/vf_yadif : add missing "This file is part of FFmpeg"
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_yadif.c
  • Revision 195883023b : VPX : subpixel_8t_ssse3 asm using x86inc This is based on the original patch opt

    2 septembre 2015, par Scott LaVarnway

    Changed Paths :
     Modify /vpx_dsp/vpx_dsp.mk


     Modify /vpx_dsp/x86/vpx_subpixel_8t_intrin_ssse3.c


     Modify /vpx_dsp/x86/vpx_subpixel_8t_ssse3.asm



    VPX : subpixel_8t_ssse3 asm using x86inc

    This is based on the original patch optimized for 32bit
    platforms by Tamar/Ilya and now uses the x86inc style asm.
    The assembly was also modified to support 64bit platforms.

    Change-Id : Ice12f249bbbc162a7427e3d23fbf0cbe4135aff2

  • Using ffmpeg, extract small part of .m4a audio file specifying exact start and end time

    31 août 2015, par Kes

    I have Linux mint 17.1.

    When I use ffmpeg to cut out a section of a 4 hour long .m4a audio file as follows :

    ffmpeg -ss 0:10:00 -i in_file.m4a -vn -c copy -t 0:40:00 out_file.m4a

    the correct position and duration of extract is extracted and the file plays just fine.

    How can I extract using the end time of the extract, not the duration ?
    ie in this case the start time and end time are 0:10:00 and 0:00:50.

    Thank you