
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...)
Sur d’autres sites (10930)
-
ffmpeg - output images in memory instead of disk
25 mai 2015, par HyperionI’ve a python script which basically converts a video into images and stores them in a folder, then all this images are read and informations are extracted from them, then images are deleted. Since the writing images step is so slow and is apparently useless for what I need, I would like to store images somehow in memory instead of the disk, read this images from there and doing my operations, this would speed up my process a lot.
Now my code look like :
1st step :ffmpeg -i myvideo.avi -r 1 -f image2 C:\img_temp
2nd step :
for i in range(1, len(os.listdir(IMGTEMP)):
#My operations for each image3rd step :
for image in os.listdir(IMGTEMP):
os.remove(IMGTEMP + "\\" + image) -
FFMPEG Extremely High Read On Disk When Transcoding
19 mars 2024, par Jace MayerI'm trying to use FFMPEG to transcode a h264 encoded file to mpegs, for use in streaming.


The command used is :


ffmpeg -v debug -re -i 'input.mkv' -acodec mp3 -f mpegts -



Which is ran in a Python subprocess, and the output is streamed to the connected client over HTTP. I've tried mp4 encoding unsuccessfully, most likely due to the MOOV atom.


The issue is, the ffmpeg process is reading terabytes of data for a less than 500mb file.


I've tried changing the FFMPEG command to use different encoders. But, the high disk usage still occurs.


-
Screenshot from video in memory without writing video or screenshot to disk
28 février 2015, par user1401321I’m working on a application which processes a substantial quantity of video files. One of the processing steps involves creating a storyboard of the video contents by taking screenshots at certain points.
Currently we are accomplishing this by writing the video from memory to disk, calling ffmpeg to generate a screenshot at a specified time, reading the screenshot to memory, then deleting both the video and screenshot from disk.
The problem is that this is a substantial number of large disk operations, which are turning into a bottleneck.
Ideally, what I’d like to do is to take the screenshots without ever writing the video or screenshot to disk ; The video is contained in memory at the time of processing, and all the videos have been transcoded to the mp4 format.
Is there a way to accomplish this, with or without ffmpeg ?