Recherche avancée

Médias (91)

Autres articles (112)

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11147)

  • Using the FFmpeg Library [closed]

    5 novembre 2020, par Morteza Khodaie

    I'm using 'com.arthenica:mobile-ffmpeg-full:4.2.2.LTS' for Compress and decode Video&#xA;But I get this error in build time&#xA;enter code hereManifest merger failed : Attribute application@theme value=(@style/Theme.Test) from AndroidManifest.xml:16:9-42 is also present at [com.arthenica:mobile-ffmpeg-full:4.2.2.LTS] AndroidManifest.xml:13:9-40 value=(@style/AppTheme). Suggestion: add &#x27;tools:replace="android:theme"&#x27; to <application> element at AndroidManifest.xml:8:5-24:19 to override.</application>

    &#xA;

  • RTMP server - without watermarks everything works fine --- with watermark one stream will not work nginx ffmpeg overlay watermark

    10 juin 2021, par Ashley Taylor

    okay so i used the below config and everything works great both youtube and facebook work .

    &#xA;

    rtmp {&#xA;    server {&#xA;        listen 1935;&#xA;        chunk_size 8192;&#xA;        application live {&#xA;        record off;&#xA;        live on;&#xA;        push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;&#xA;                push rtmp://127.0.0.1:19350/rtmp/453uy4uty8ryt85ty85yt8; (facbook)&#xA;                    }&#xA;    &#xA;        }&#xA;    &#xA;&#xA;    }&#xA;

    &#xA;

    Now i have tried 2 seprate way to add a water mark (Youtube works fine Every time)&#xA;Facebook does not stream at all let alone with a watermark

    &#xA;

    examples i have tried below

    &#xA;

    rtmp {&#xA;server {&#xA;    listen 1935;&#xA;    chunk_size 8192;&#xA;    application live {&#xA;    record off;&#xA;    live on;&#xA;            exec /bin/ffmpeg  -i rtmp://127.0.0.1:1935/live/$name&#xA;             -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"&#xA;             -c:v libx264 -f flv rtmp://127.0.0.1:1935/push/$name;&#xA;              }&#xA;&#xA;    application push {&#xA;    live on;&#xA;    push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;&#xA;            }&#xA;   }&#xA;}&#xA;

    &#xA;

    and another

    &#xA;

    rtmp {&#xA;server {&#xA;    listen 1935;&#xA;    chunk_size 8192;&#xA;    application live {&#xA;    record off;&#xA;    live on;&#xA;            exec /bin/ffmpeg  -i rtmp://127.0.0.1:1935/live/$name&#xA;             -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"&#xA;             -c:v libx264 -f flv rtmp://127.0.0.1:1935/push/$name;&#xA;    &#xA;                    exec /bin/ffmpeg  -i rtmp://127.0.0.1:1935/live/$name&#xA;             -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"&#xA;             -c:v libx264 -f flv rtmp://127.0.0.1:1935/pushh/$name;&#xA;            }&#xA;&#xA;    application push {&#xA;    live on;&#xA;    push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;&#xA;            }&#xA;&#xA;            application pushh {&#xA;            live on;&#xA;            push rtmp://127.0.0.1:19350/rtmp/453uy4uty8ryt85ty85yt8;&#xA;            }&#xA;   }&#xA;}&#xA;

    &#xA;

    Now for the life of me i just cannot get my brain to work.&#xA;i am very new to rtmp and have tried a dozen other ways before coming here for help.

    &#xA;

    i know this is going to be something i where i am making such a simple mistake

    &#xA;

    but on the other hand paying over $49 for restream.io for a shoddy service i just have to learn this for my own servers

    &#xA;

  • RTSP stream emulator with variable playback speed [closed]

    31 janvier 2021, par foyife

    I would like to build an application very similiar to an existing one. It is an IP camera emulator that makes RTSP streams from local video files.

    &#xA;

    What I need in addition are options to control the video with an API while the stream is running. Some examples for that :

    &#xA;

      &#xA;
    • Skipping to a certain timestamp of the video
    • &#xA;

    • Change the playback speed
    • &#xA;

    • Play the video in reverse
    • &#xA;

    &#xA;

    Unfortunately, I have very little experience in video streaming and it seems to be a rare use case for ffmpeg or gstreamer. Maybe someone could give me a hint on which library might be best for this application ? Thanks !

    &#xA;