Recherche avancée

Médias (91)

Autres articles (86)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11712)

  • ffmpeg - Live stream to web browser [on hold]

    21 octobre 2016, par Sreejith C M

    I was looking for a solution to stream my desktop live on my Windows system and found out ffmpeg is a good solution using dshow and everything is working fine and well. I’m using a C# wrapper for ffmpeg to record my desktop and I can save it in a local file.

    The problem I have is that, I have to watch the stream on my Web browser ( Chrome / Firefox ). I can’t use Media Server’s like wowza, red5 and also can’t use ffserver.

    I tried the ffmpeg wiki https://trac.ffmpeg.org/wiki and documentation but couldn’t figure out how to do this.

    Please help me to figure out this, how I can do this.

  • How do i overlay a logo image or a video with ffmpeg [closed]

    5 août 2023, par Rui Pinto

    I want to overlay a logo here
but it's being so difficult to learn filter_complex
i would like to know if somebody can help me
Also in the future i would like to add a video in loop to be like an overlay

    


    type here
#!/bin/bash

VBR="3500k"        # Video bitrate in kbps
FPS="25"           # Frames per second
QUAL="ultrafast"   # Video encoding preset (you can adjust this for better quality)

TWITCH_URL="adsad"
TWITCH_KEY="dasd"

VIDEO_SOURCE="/home/ubuntu/Downloads/Untitled.mov"
AUDIO_SOURCE="/home/ubuntu/Downloads/Untitled.mp3"

ffmpeg \
    -re -stream_loop -1 -i "$VIDEO_SOURCE" \
    -re -stream_loop -1 -i "$AUDIO_SOURCE" \
    -map 0:v:0 -map 1:a:0 \
    -vcodec libx264 -pix_fmt yuv420p -s 1920x1080 -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
    -acodec libmp3lame -ar 44100 -b:a 320k -bufsize 512k \
    -f flv "$TWITCH_URL/$TWITCH_KEY"


    


    I tried many links but as i don't know how to work with the filter complex i ask someone to help me.

    


  • lavf doxy : add some general lavf information.

    11 décembre 2011, par Anton Khirnov

    lavf doxy : add some general lavf information.