
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6921)
-
Save continuous RTSP stream to 5-10 minute long mp4 files
20 janvier 2017, par Ruslan SharipovHow can I keep the flow (protocol rtsp, codec h264) in file (container mp4) ? That is, on inputting an endless stream (with CCTV camera), and the output files in mp4 format size of 5-10 minutes of recording time.
OS : debian, ubuntu
Software : vlc, ffmpeg (avconv)Currently this scheme is used :
cvlc rtsp://admin:admin@10.1.1.1:554/ch1-s1 --sout=file/ts:stream.ts
ffmpeg -i stream.ts -vcodec copy -f mp4 stream.mp4But it can not record video continuously (between restarts vlc loses about 10 seconds of live video).
-
FFMPEG / MJPEG Encoding / How to add DQT table in packet data ?
20 mai 2020, par GoodSimonI write my own transcoder in C++ to convert any image to jpeg based on the examples in ffmpeg sources. I use the MJPEG codec to create a jpeg image. By sending AVFrame to the MJPEG encoder I get AVPacket. Then I just take the data from the packet->data structure with the size avpacket->size and save it to a file with the jpg extension.
The problem is that the finished JPEG image has only one DQT (Define Quantization Table). As far as I understand, there should be two tables in the file.



What do I need to do to have 2 quantization tables in avpacket->data ?


-
How to save video from memory stream to .m4s freagments ?
13 septembre 2019, par Yehor ChankovSummary
I have a video streaming application, that processes videos uploaded by a user and serves it back to the user. Previously a user had to wait until the whole video had been processed and could only access it after that. Now I want my users to be able to start watching a video as soon as the first fragment is processed.
The main idea is that I have an mp4 file, that I upload in memory using python and store as a 4d numpy array. Then I divide it into separate chunks and process each chunk.
Solutions so far
All solutions that I found so far are based on the idea that a complete mp4 video file exists, so that m4s fragments can be created by dividing it.
Expected result
What I want to achieve is that after each chunk is processed, it gets saved from memory to disk as m4s fragment, that can be served to a user immediately via MPEG dash .mpd playlist that links to all these fragments on disk.