Recherche avancée

Médias (91)

Autres articles (72)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7439)

  • Split video stream with FFmpeg and play part with FFplay [closed]

    22 mars 2024, par Jan Hein

    I have a video stream send with FFmpeg to a other computer on my local network.&#xA;At the receiver computer I want to split the video stream in multiple parts and play them at the receiver computer. How can I do that ?

    &#xA;

    Example :&#xA;Stream send form sender to receiver is 1000x1000 pixels.&#xA;At the receiver split the 1000x1000 pixel stream into four parts of 500x500 pixels, and play them all four on the receiver in a separate player.

    &#xA;

    I have tryed it with a multicast stream to the receiver, and played it four times with FFplay, but that was not working correct.

    &#xA;

    I also hve looked for multiple outputs with FFmpeg and then multiple pipes to FFplay, but could not find a solution.

    &#xA;

  • Discord bot play youtoube link

    26 février 2019, par RedGaming

    Im coding a discord bot, i installed ytdl and ffmpeg, both correctly (cmd shows version), but it quite dont plays the yt links, this is the code :
    } else if (message.content.startsWith ===$prefixplay`)
    const ytdl = require(’ytdl-core’) ;
    const streamOptions =
    seek : 0,
    volume : 1
     ;
    const broadcast = bot.createVoiceBroadcast() ;
    var link = arg1

       bot.voiceChannel.join()
           .then(connection => {
               const stream = ytdl(arg1, {
                   filter: 'audioonly'
               });
               broadcast.playStream(stream);
               const dispatcher = connection.playBroadcast(broadcast);
           })
           .catch(console.error);
  • Why does this HEVC HLS stream not play on browsers ?

    22 janvier 2024, par Sebastian

    I have a HEVC HLS stream that does not play when I paste it e.g. in Safari. The video is encoded in HEVC and has a resolution of 4608x1728. The screen just stays black.

    &#xA;

    The URL is : https://cdn2.taggy.cam/videos/JFNi2a3JVxmUxWh8t6YkbzR5t9HyS94ZaQy81KVrbwJ2ztTp9f/hls/h265/video.m3u8

    &#xA;

    (or https://cdn2.taggy.cam/videos/JFNi2a3JVxmUxWh8t6YkbzR5t9HyS94ZaQy81KVrbwJ2ztTp9f/hls/h265/playlist.m3u8 for the master playlist)

    &#xA;

    VLC player does play it.

    &#xA;

    I tried several different players to get an error message, but the only thing I got was "MEDIA.VIDEO_ERROR (4,,CHUNK_DEMUXER_ERROR_APPEND_FAILED : Video stream codec hevc doesn't match SourceBuffer codecs.)"

    &#xA;

    The video is initially created with FFMpeg by recording the RTSP stream of a webcam with

    &#xA;

    ffmpeg -i rtsp://stream -tag:v hvc1 -f hls -hls_time 1 -hls_list_size 0 -hls_segment_filename output-directory/video-%05d.m4s -c copy&#xA;

    &#xA;

    Any ideas how to debug this would be appreciated !

    &#xA;

    Thanks,&#xA;Sebastian

    &#xA;