Recherche avancée

Médias (91)

Autres articles (69)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8112)

  • fftools/resources : Fix double-build by disabling .d file generation

    23 juin, par softworkz
    fftools/resources : Fix double-build by disabling .d file generation
    

    Signed-off-by : softworkz <softworkz@hotmail.com>

    • [DH] ffbuild/common.mak
    • [DH] fftools/Makefile
    • [DH] fftools/resources/Makefile
  • libavfilter/dnn/dnn_backend_tf : Remove redundant av_freep() to avoid double free

    7 août, par Jiasheng Jiang
    libavfilter/dnn/dnn_backend_tf : Remove redundant av_freep() to avoid double free
    

    Remove redundant av_freep() to avoid double free since task will be freed in dnn_free_model_tf() after the success of ff_queue_push_back().

    Fixes : af052f9066 ("lavfi/dnn : fix mem leak in TF backend error handle")
    Signed-off-by : Jiasheng Jiang <jiashengjiangcool@gmail.com>

    • [DH] libavfilter/dnn/dnn_backend_tf.c
  • How to add dynamic captions with animations on a video in a cross-platform Android & iOS app and export it as a final video ? [closed]

    29 avril, par Danial Qsk

    I'm building a cross-platform mobile app using Flutter (or React Native) where users can :

    &#xA;

    Add dynamic text captions with animations over a video, similar to TikTok

    &#xA;

    See these changes in real-time during video playback

    &#xA;

    Export the video with the animated captions burned into the output (e.g., MP4)

    &#xA;

    What I’ve implemented so far :

    &#xA;

    Video playback using video_player in Flutter (or react-native-video).

    &#xA;

    Captions are rendered using Canvas/UI layer during playback.

    &#xA;

    Problem : While I can overlay animated text in the UI, I can't figure out how to include these in the exported video. I’m considering using FFmpeg to burn in the captions, but I’m unclear how to integrate it with the animated UI overlays or render them into a final video on both Android and iOS.

    &#xA;

    What I want to achieve :

    &#xA;

    Efficient way to render animated text overlays onto a video and export it as a final video file on both Android and iOS.

    &#xA;

    Maintain good performance for real-time playback and smooth export.

    &#xA;

    What approaches or processing pipelines could achieve this ?&#xA;(For example, rendering the UI layer to an offscreen video, integrating with FFmpeg, or using native rendering techniques.)

    &#xA;