
Recherche avancée
Autres articles (49)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (8402)
-
ffmpeg open rtsp stream and keep encoded until a frame is read
20 avril 2022, par ghylanderI have an ip camera which is live streaming 24/7.


I want to open the rtsp stream with ffmpeg on a client, but since continuously decoding the stream is cpu-intensive, I want to keep the stream encoded until I specifically request for a frame


How can I achieve this (preferable in python, but C is ok too) ?


Using ffmpeg-python, I can open a stream and keep it raw, but how do I make sure that when I request a frame from the encoded stream, I start reading the frame from the beginning of the frame ?


-
Opening a video file from local drive as buffer and write it into new file
19 avril 2017, par laslavincoI have multiple broken video files of one same video I need to join them together as one video again but when I tried this
import os
path = 'C:/temp/test'
files = os.listdir(path)
for file in files:
mainFile = open('C:/temp/main.mp4','ab')
with open(path+'/'+file,'rb') as read:
print (read)
mainFile.write(read)
mainFile.close()It threw an Error saying
TypeError: must be string or buffer, not file
So I don’t know how do I make a video file buffer. I tried googling it and I found something called ffmpeg but it’s a third party app. All I need is buffer of a file.
-
libavutil : add avpriv_open() to open files with close-on-exec flag
6 août 2013, par Rémi Denis-Courmont