Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (73)

  • 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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

  • Ffmpeg alpha from udp input

    30 mai 2017, par Bob Ross

    I’m trying to stream a video that is composed from a base video and an overlay video with an alpha channel.

    I receive both of the incoming input streams as udp inputs so I can change them at runtime.

    The problem is that when I use avi as the format for the overlay stream i get this error :

    udp ://127.0.0.1 :$port2 : Invalid data found when processing input

    and when I use mpegts as the format for the overlay stream I get this error :

    Stream specifier ’:v’ in filtergraph description [0:v][1:v]overlay=format=rgb matches no streams

    The main ffmpeg command :

    ffmpeg -re -i udp://127.0.0.1:${port1} -vcodec qtrle -i udp://127.0.0.1:${port2} -s 854x480 -filter_complex [0:v][1:v]overlay=format=rgb -c:v libx264 -preset ultrafast -f flv ${output}

    The base stream :

    ffmpeg -re -i ${hls_source} -c:v libx264 -vf scale=854:480 -f mpegts udp://127.0.0.1:${port1}

    The overlay stream with alpha channel :

    ffmpeg -re -i z.mov -vcodec qtrle -f avi udp://127.0.0.1:${port2}

    It’s worth noting that when I switch one of the udp inputs with a recorded file, It does work.

  • FFmpeg video alpha merged freezes

    29 mai 2017, par cdapalc

    I am using ffmpeg 4 Android to overlay a video with alpha channnel in a normal video. I use the following command :

    String[] mergeVideosCommand = new String[]{
               "-y",
               "-i",
               videoAlphaPath.mov,
               "-i",
               videoNormalPath.mp4,
               "-filter_complex",
               "[0:v]colorchannelmixer=aa=1[ov];[1:v][ov]overlay=0:0[video_out]",
               "-map",
               "[video_out]",
               "-map",
               "0:a",
               videoResultPath.mp4
    };
    ffmpeg.execute(mergeVideosCommand, responseHandler);

    Both videos get merged, but the non-transparent one freezes after one second of playing but the video with alpha channel keeps moving and both audios work fine as well.
    I have tried the same command from my computer (with ffmpeg v2.6.3) and it works fine but I need to make it work on Android (ffmpeg v3.0.1).
    Anybody experienced something similar ? I would appreciate any help. Thanks.

  • avcodec/gif : add support for alpha

    11 décembre 2018, par Paul B Mahol
    avcodec/gif : add support for alpha
    

    Based on patch by Bjorn Roche.

    Fixes #6813.

    • [DH] libavcodec/gif.c