
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (83)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe 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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (10587)
-
Convert a video from stream with ffmpeg
2 juillet 2020, par AlexI'm working with video files in my .net application using NReco's ffmpeg wrapper.


I can easily convert videos if I point the ConvertMedia to an existing file with a path, but I really want to convert the file via a stream and not a path (before even saving it).


Next to the ConvertMedia method, there's also a ConvertLiveMediaTask method that accepts a stream instead of a path, but that's for streaming videos or something ?


It says I can create a task for live stream conversion (real-time) that reads data from stream and writes conversion result to the file, but I can't get it to work and I can't find a working example of it on the Internet.


Does anyone have any experience with this ?


Someone please help.


-
Read Audio and Video, edit Video frame, then write back Audio and Video - Using python
19 avril 2021, par CowKeyManI'm looking to do exactly as the title says, ie :


- 

- Read a file containing both audio and video
- Edit the video frames individually
- Write back the video with the new frames but the same exact audio as before








OpenCV is not a good option for reading and writing since it doesn't handle audio, altough I can use opencv in step 2.


The language I am using is Python, as this needs to be integrated with a bigger system.


My question is this : What software stack / librarries are appropriate for this kind of task and if anyone can point me to some resources it would be highly appreciated


So far I have found the following options, but would like some feedback on them based on experience :


- 

- ffmpeg
- MoviePy
- libav








-
Convert audo from 2.0 to 5.1 for TVHeadend IPTV from m3ub stream using ffmpeg pipe
17 mai 2020, par Brad TRight now, I have TVHeadend successfully setup to stream an m3ub as an IPTV channel with :



pipe:///usr/bin/ffmpeg -i https://STREAM.m3u8 -c copy -f mpegts pipe:1



but I want to convert the audio from 2.0 to 5.1 where the left and right audio is just copied to all the 5.1 channels. For example, instead of only hearing voice dialog on the center channel I want to hear it on all channels. If you're wondering why, this 5.1 system isn't really for making a surround sound experience so much as it is to bring the voice "closer" to the person.



I'm using a raspberry pi 4 with raspian buster lite.