
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 (53)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5600)
-
I have installed ffmpeg on amazon linux 2. How do I add it to the path permanently ?
17 mai 2021, par suyogxI have installed ffmpeg on amazon linux 2. But my application can't seem to find ffmpeg or ffprobe. How do I add these to the path permanently ? I tried doing it, but every time i logout of ssh, the value is erased from the path.


-
FFMPEG install on Amazon Cloud9 IDE
27 mai 2021, par Scott TallaridaI am attempting to install FFMPEG on my cloud9 instance. Everything seems to be going peachy until I receive the following :


configure: checking for guile 3.0
configure: found guile 3.0
checking for guile-3.0... no
checking for guile3.0... no
checking for guile-3... no
checking for guile3... no
checking for guile... /home/ubuntu/.linuxbrew/opt/guile@2/bin/guile
configure: error: found development files for Guile 3.0, but 
/home/ubuntu/.linuxbrew/opt/guile@2/bin/guile has effective version 2.2



I am SUPER ubuntu newb but it seems there is some baked-in version conflict that is stopping this process ?


-
getting ffmpeg to listen on specific port on amazon ec2
12 juillet 2013, par user1913115I have a streaming device which can stream to any udp address/port, so if i set it up on my network , and open ffmpeg with this command :
ffmpeg -f mpegts -i 'udp://0.0.0.0:2223?fifo_size=1000000&overrun_nonfatal=1' -re -y -strict experimental -vcodec copy -f mp4 main.mp4
it works fine, i get the main.mp4 file recorded.
also, when i check lsof -i it shows that ffmpeg is listening on port 2223however, when i run the same command on amazon ec2, it doesn't record anything. i checked, the port 2223 is open in the security group. and if i run this command, it gets packets fine :
nc -u -l 2223
however when i run lsof -i in amazon ec2 it shows that ffmpeg is listening to a random UDP port (e.g. 42195) every time
has anyone run into this problem ?