Recherche avancée

Médias (91)

Autres articles (55)

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

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10826)

  • avfilter/split : Deduplicate AVClasses

    10 septembre 2021, par Andreas Rheinhardt
    avfilter/split : Deduplicate AVClasses
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/split.c
  • ffmpeg : How to split a video horizontally ? [on hold]

    20 septembre 2017, par Joe3549

    I would like to split a video horizontally in the middle, and keep the upper part with its original width, and consequently with half the height. How could I use the ffmpeg parameters ? (split ?, crop ?, filter_complex ?)
    Thank you.

  • What is the purpose of the split filter in FFMpeg ?

    1er juin 2024, par TheOrbitHeart

    In complex filters specifically, is there a situation where it is necessary to use the split filter, rather than use the same input multiple times ?

    &#xA;

    For example, consider the following FFmpeg command :

    &#xA;

    ffmpeg -i input.mp4 -filter_complex \&#xA;  "[0:v]hflip[out1]; \&#xA;   [0:v]boxblur=10[blurred]; \&#xA;   [out1][blurred]hstack[out]" \&#xA; -map "[out]" output.mp4&#xA;

    &#xA;

    It seems to work perfectly fine, But I saw some tutorials consistently using "split" in situations like this, where the input is split before any other filters are applied, making me wonder if there are unintended consequences to using inputs directly like this, I tried to find filters that may alter the input or optimization issues but I found no difference. So, it begs the question, what's the purpose of "split" ? and when should I use it ?

    &#xA;