Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

Sur d’autres sites (5515)

  • Anomalie #3422 : Sélecteur de rubrique en picker : trier par rang puis ordre alphabétique

    3 novembre 2015, par b b

    C’est étrange car aucune des modifications récentes du sélecteur ne porte sur le classement des items, cf :

    https://core.spip.net/projects/spip/repository/changes/spip/prive/formulaires/selecteur

    Tu es certain que le bug n’était pas présent en 3.1 beta ?

  • Anomalie #2855 : mauvais traitement du signe par textwheel

    16 octobre 2013, par Fil Up

    oui je parlais en effet du regexp de textwheel, mais il risque quand même de se déclencher si on veut saisir sans espaces
    ```xy```

    mais ce cas-là est sans doute indémerdable de toutes façons, puisque ```p>

    Autrement dit, ton patch me paraît bien.

  • ffmpeg : i cant make tee working for restreaming

    24 avril 2018, par Jorge Vértiz

    I’ve been trying to overlay an image on a rtmp stream and resend it to Facebook Live and Twitch, using a nginx with a rtmp module and ffmpe. I have used this code for each service :

    ffmpeg -i rtmp://localhost/app/streamkey -i logo.png -filter_complex "[0:v][1:v] overlay=0:0" -c:v libx264 -preset veryfast -bufsize 4000k -c:a aac -b:a 160k -ar 44100  -f flv rtmp://live-api.facebook.com:80/rtmp/streamkey;

    I have one command for Facebook Live and another for Twitch, but it consumes much hardware, so looking around I found a work around using tee seudo-mixer :

    ffmpeg -i rtmp://localhost/app/streamkey -i logo.png -filter_complex "[0:v][1:v]overlay=10:10" -c:v libx264 -preset veryfast -bufsize 4000k -c:a aac -b:a 160k -ar 44100  -f tee "[f=flv]rtmp://live-api.facebook.com:80/rtmp/streamkey|[f=flv]rtmp://live-jfk.twitch.tv/app/streamkey"

    It works fine with Facebook Live, but when Twitch starts the live streaming there is no image, only a black screen.

    What am I doing wrong, and how do I get this stream working ?