
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (13)
-
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (4355)
-
Outputting stream to specific audio device with ffmpeg from a mediasoup stream on mac - help please
14 février 2021, par joorooI'm working on a webrtc app for handling multiple audio streams. Works ok in a browser but I want to move part of it to a node app.


I'm using mediasoup as the server for this, and a sample they have to record to a file using ffmpeg or gstreamer as the starting point.


The key file in the sample is here https://github.com/Kurento/mediasoup-demos/blob/master/mediasoup-recording/server.js


In this file it saves an audio stream (and optionally video) to a file using ffmpeg.


I simply want to simply send the sound to an audio output device instead. I'm sure it's really simple but ffmpeg seems like a huge subject in itself and I've already spent a lot of time trying to find out how to do this.


The command used to save to a file is (from the source code comments)


* ffmpeg \
 * -nostdin \
 * -protocol_whitelist file,rtp,udp \
 * -fflags +genpts \
 * -i recording/input-vp8.sdp \
 * -map 0:a:0 -c:a copy -map 0:v:0 -c:v copy \
 * -f webm -flags +global_header \
 * -y recording/output-ffmpeg-vp8.webm



If anyone could advise how to change this to send to a specific audio device, I'd be really grateful. This is on a mac, and I have multiple sound devices so I also need to be able to find a list of them so I can send specific streams to specific devices. Something else I've struggled to do (Sox, for instance, fails to display them properly).


Many thanks in advance.


-
Evolution #3432 (Nouveau) : Mise à jour automatique de SPIP avec notification admin
29 avril 2015, par Gilles VINCENTWordpress propose ce type de fonctionnalité.
Est-ce que cela ne pourrait pas être repris dans SPIP ?.Gilles
---------- Forwarded message ----------
From : WordPress <wordpress@xxx>
Date : 2015-04-27 21:10 GMT+02:00
Subject : [Prise de notes] Votre site a été mis à jour vers WordPress 4.1.4
To : gilles.vincent@gmail.comSalutations ! Votre site à l’adresse http://xxx a été automatiquement mis à jour vers WordPress 4.1.4.
Pour en savoir plus sur la version 4.1.4, lisez l’écran À Propos de WordPress :
http://xxx/wp-admin/about.phpWordPress 4.2.1 est disponible. La mise à jour est facile et ne requiert que quelques secondes :
http://xxx/wp-admin/update-core.phpSi vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WordPress-fr.net devraient pouvoir vous aider.
http://www.wordpress-fr.net/supportPour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le Web plus sûr pour vous et vos lecteurs.
L’équipe WordPress
-
Bypass Nvidia's 2 Stream Encode Limit On Windows
28 novembre 2018, par NimbleI’m trying to encode 3 video streams simultaneously in FFmpeg but due to Nvidia’s 2 stream encode limit on GTX / RTX GPUs I have to encode one of the streams with my CPU. This forces me to output multiple files as opposed to one properly mapped file containing all audio and video streams which has many drawbacks involving synchronization and ease of use.
Before actually considering investing $1000+ in a comparable Quadro GPU, which has no encode stream limits, I thought I’d search around to see if anyone has bypassed said limit. Eventually I came across this GitHub repository :
https://github.com/keylase/nvidia-patchIt seems to actually work... but it’s Linux only. Much of my hardware is incompatible with Linux so migration just isn’t an option for me. Not being smart enough to learn from this method and apply it to a Windows environment I kept looking and came across this repository :
https://github.com/Matviy/nvidia-NVENC-multi-session-patchIt would seem this is a method to bypass the limit on Windows but the instructions are way over my head. I’ve asked a few of my buddies who are experienced in coding but each one only seems to understand each method to a point and can’t really help.
Was hoping someone could give some insight on the subject, possibly offering a solution, or confirming that the instructions are simply too vague.