Recherche avancée

Médias (91)

Autres articles (81)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11067)

  • Choose your favourite logo

    28 septembre 2018, par Matomo Core Team — Community

    We’ve been searching for a new logo and we are now down to the final three designs. We want you, the community, to help us choose our logo as we set the scene for a refreshed and vibrant new look for Matomo.

    Please choose your favourite Matomo logo from the three options below. Voting limited to once per person :)

  • Can FFMPEG encrypt mp4 content using AES 128 encryption ?

    15 mars 2018, par Fayas B

    I am new to encryption processes. I wanted to know if I can encrypt a mp4 video file using ffmpeg with AES 128 protocol. I was able to encrypt mp4 files using CENC protocol using the following command :

    ffmpeg -i testvideo.mp4 -vcodec copy -acodec copy -encryption_scheme
    cenc-aes-ctr -encryption_key 76a6c65c5ea762046bd749a2e632ccbb
    -encryption_kid a7e61c373e219033c21091fa607bf3b8 testvideo_encrypted.mp4

    Does CENC have a connection with AES ? Also can someone explain how a AES 128 encryption for mp4 files using ffmperg can be done.

  • avformat/http,tls : honor http_proxy command line variable for HTTPS

    23 août 2020, par Moritz Barsnick
    avformat/http,tls : honor http_proxy command line variable for HTTPS
    

    Add the "http_proxy" option and its handling to the "tls" protocol,
    pass the option from the "https" protocol.

    The "https" protocol already defines the "http_proxy" command line
    option, like the "http" protocol does. The "http" protocol properly
    honors that command line option in addition to the environment
    variable. The "https" protocol doesn't, because the proxy is
    evaluated in the underlying "tls" protocol, which doesn't have this
    option, and thus only handles the environment variable, which it
    has access to.

    Fixes #7223.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
    • [DH] libavformat/tls.c
    • [DH] libavformat/tls.h