Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (41)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (5757)

  • How to send stream on Azure Media service Secondary INGEST URL by RTMP ?

    12 avril 2018, par Lin ChiMing

    I did well to post stream on Primary INGEST URL, but failed to post stream on Secondary INGEST URL.

    I uesd FFMPEG to post stream, i found that FFMPEG stuck while handshaking with Azure Media service.

    I saw FFMPEG send 0x0C and 1536 random bytes to Azure Media service, but Azure didn’t response anything.

    Is Secondary INGEST URL still work ?

  • Try out the latest Piwik 3.0.0 beta version : Piwik 3.0.0 is almost here !

    15 novembre 2016, par Matthieu Aubry — Uncategorized

    Dear Piwik community,

    We are excited today to announce our publicly available Piwik 3.0.0 beta 3 release. We have been been working hard behind the scenes on the new 3.0.0 release for almost one year now. We, the passionate team at Piwik, are dedicated to bringing you a new and improved Piwik experience and invite you to join our beta channel to switch to Piwik 3 today !

    Enable the beta release channel

    Ready to enjoy a much faster Piwik experience and the magic of a modern user interface ? Follow the instructions here and you can upgrade to Piwik 3.0.0 beta in just one click.

    Please note that beta versions have a risk of containing bugs so we don’t recommend to use on a production server. If you find and report a bug in a beta version, we will aim to fix it as quickly as possible.

    Premium plugins in Piwik 3

    In the Piwik Marketplace you can discover & download plugins to enrich the functionality of your Piwik, as well as themes to change the look and feel of your Piwik user interface. The Marketplace integration was much improved in this new release, most notably : you can now purchase and download Premium plugins within Piwik !

    Important changes

    The Piwik 3 upgrade comes with some important changes that may require your attention which we detail in this blog post and in the developer changelog.

    The full list of more than 150 changes can be found in the Piwik 3 beta changelogs : beta 1, beta 2, beta 3.

    What to do next

    When you use the Piwik beta channel and if you come across any issues in Piwik such as a bug, feature missing, regression… let us know on our tracker and create a new issue so we can get this sorted.

    As we are in the final days of Piwik 3 development, we are looking forward to your feedback and help testing !

    Welcome to the future of Piwik,

    Happy Analytics !

  • Add image on ffmpeg stream

    26 juin 2018, par ManYouTroll

    I’m coming to you today because I just want to add an overlay to my feed on youtube I already have all the code that plays the video but I can not add an image. Here is the code that I am currently using and I have seen on another post how to add an image but I can not add it :

    function goto {


    VBR="2000k"                                    # Bitrate de la vidéo en sortie
    FPS="30"                                       # FPS de la vidéo en sortie
    QUAL="fast"                                  # Preset de qualité FFMPEG
    YOUTUBE_URL="rtmp://x.rtmp.youtube.com/live2"  # URL de base RTMP youtube

    result="$(ls Video | shuf -n 1)"

    SOURCE="Video/${result}"              # Source UDP (voir les annonces SAP)
    KEY="ergtre498ter64t"                                     # Clé à récupérer sur l'event youtube

    ffmpeg \
       -i "$SOURCE" -deinterlace -vf realtime -af arealtime \
       -vcodec libx264 -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
       -acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k \
       -framerate 2 -f flv "$YOUTUBE_URL/$KEY"
    goto
    }
    goto

    And the code I found

    ffmpeg -i input.mp4 -i image.png \
    -filter_complex "[0:v][1:v] overlay=25:25:enable='between(t,0,20)'" \
    -pix_fmt yuv420p -c:a copy \
    output.mp4