
Recherche avancée
Autres articles (85)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (11333)
-
avformat/demux : use io_close2 when closing avfromat
17 mai, par Kacper Michajłowavformat/demux : use io_close2 when closing avfromat
It's not valid to call avio_close() on context that has not been open
with avio_open().This fixes use of custom IO. (io_open / io_close2 callbacks)
Note that by default io_close2 is set to io_close2_default() which calls
avio_close(), so default case will work the same as before.Signed-off-by : Kacper Michajłow <kasper93@gmail.com>
Reviewed-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Playing video from webcam in linux
28 novembre 2014, par SounBum SongIm looking for some ways to stream video frame from webcam on python Tkinter.
Im trying to get frames from webcam by ffmpeg/v4l2
and stream it on Tkinter and send the frame to network simultaneously(dont wanna use ffserver).
Im confusing that how I can get frame with ffmpeg/v4l2(which libraries should i use ?)
How can I read the frame on Tkinter(Maybe Gstreamer) from ffmpeg/v4l2
If my idea is wrong.... someone can give me a good direction ??
-
Restreaming an rtsp stream through ffmpeg on iOS
6 avril 2017, par animaonlineI have an iOS application that displays an rtsp stream from an IP camera on the local network, I would like to restream it to an external server in real time (Wowza to be specific) the server will take care of converting rtsp to HLS so that the users can view the live broadcast on their devices.
On a computer it would be pretty straight forward :
ffmpeg [input-options] -i [input-file] [output-options] [output-stream-URI]
But I need to do it programmatically on iOS, and I’m not really sure if it’s even possible. Anyone ?