Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (67)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8805)

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