
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (9885)
-
What version of ffmpeg does libvlc use ?
7 janvier 2016, par user3846684I am writing an application on linux (debian) that uses both libvlc and ffmpeg.
Both run fine separately, but the moment I try to compile both functionalities into my app, libvlc stops working (complains about not finding the codecs).I have been able to isolate the problem, basically libvlc runs fine until I compile the first line of ffmpeg code (av_register_all), at which point the linker brings in my own ffmpeg compiled lib, and the moment I do that, it stops playing the file. Obviously I have 2 conflicting ffmpeg libs on my system, the one libvlc is using, and the newer one I built myself to write ffmpeg code.
My question is, how do I make libvlc work with the newer library ? Considering there were functions deprecated in the newer ffmpeg code, would that involve recompiling libvlc ? Is the libvlc code up to date with the newest ffmpeg library(new function signatures) ?
Any help is appreciated !
-
About real time video web streaming using ffserver(webm)
29 avril 2016, par PotatoI’m testing ffserver for real time streaming using web cam and mic.
Use this ffserver conf
HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000000
CustomLog -
<feed>
File /tmp/feed1.ffm
FileMaxSize 1G
ACL allow 127.0.0.1
</feed>
<stream>
Feed feed1.ffm
Format webm
AudioBitRate 64
AudioSampleRate 48000
AudioChannels 1
VideoCodec libvpx
VideoSize 320x240
VideoFrameRate 25
AVOptionVideo flags +global_header
AVOptionAudio flags +global_header
PreRoll 15
StartSendOnKey
VideoBitRate 400
</stream>and feed
ffmpeg -f v4l2 -i /dev/video0 -f alsa - ac 1 - i hw:1 http://localhost:8090/feed1.ffm
It’s okay when I approach with chrome http://IP_address:8090/live.webm
But the problem is that the streaming shows little earlier moment, when I refresh the page. I think that’s not a delay problem.
How can I use this for real time streaming.Regards.
-
can someone shiift sound on movie with ffmpeg ? [duplicate]
8 juin 2018, par Seb LHThis question already has an answer here :
I’d like start the sound track on a movie some seconds or millisecond later one the same movie ! I have no solution for the moment.... Is someone can knows how doing that ?Thanks