Recherche avancée

Médias (91)

Autres articles (38)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (4267)

  • ffmpeg : recording audio+video together results in frame dropping (Windows 7) [closed]

    20 juin 2013, par John Smith

    this is the entire command :

    ffmpeg -f dshow -i audio="virtual-audio-capturer":video="screen-capture-recorder" -vcodec libx264 -r 25 -crf 1 -ac 1 -acodec aac -strict -2 -ar 44100  -q 1 -y -f flv output.flv

    this produces kinda small and good file, still there are many "dshow @ 000000000031a0a0] real-time buffer 207% full ! frame dropped !". The video quality is very good, no lags at all, but audio do lags.
    The strangest thing is, when I record only video, or only audio (so not both at the same time) it does produces lagless result.
    Im kinda beginner in these things.

  • How do I batch cut videos ? [closed]

    12 février 2024, par EngineerJack

    I've searched for a while on Google, but haven't found a good solution.

    


    I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.

    


    I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.

    


    I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.

    


    ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"

    


    BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.

    


    Anyone who can help me with this, I'd appreciate it.

    


    I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.

    


  • Debian Linux How-To use eth0 and wlan0 on different routers ?

    27 mars 2014, par Chris

    I have eth0 and wlan0, both are using different rounter, one is good for download, the other one is good for upload.
    But... When i have eth0 cable plugged in, wlan0 can not ping its own router or ping ex. google.com.

    ping -I eth0 google.com

    i get answer

    ping -I wlan0 google.com

    no answer

    both routers have inet connection and at the moment both interfaces using DHCP.

    I need to run ffmpeg that is getting live-stream via wlan0 -> put it in to ffserver -> second ffmpeg get ist from ffserver and send it via eth0 to my dedicated server...

    any idea ?