
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (86)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
Sur d’autres sites (12711)
-
lavfi/{denoise, procamp, scale, sharpness}_vaapi : Add passthrough mode
16 juin 2023, par Fei Wang -
Heroku django weird tempfile behavior
13 février 2019, par BenFireI’m writing a django application, where, a user records a message, the message is converted with FFMPEG and uploaded to a FS,now, FFMPEG doesn’t allow file overwrite, so i’m creating a new file and than replacing the old one before inserting it my filesystem. so basically :
The file is recorded in the front-end -> sent to the backend and stored as a tempfile (automatically by django) -> the files gets converted -> the file is uploaded to the fs.
(the file is converted from around 2mb to 200kb, which is an indicator to if the file was converted)
now, to replace the original file, I use shutil.move(), and when i run it on my system, and then I look in my fs, the file sure is only 200kb, but when i push the same code to Heroku, i do the same operation, when look in the fs I see that the new file is still 2mb, also, I know the conversion was done from the server logs, whitch means that the file replacing failed but only on Heroku, am i missing something ?
-
How to concatenate video files from different sub directories using ffmpeg in win10 command prompt ?
23 avril 2021, par raymeriumHow can I merge 1200 small mp4 files scattered in 60 subfolder, into one big file ?


My IP Camera records and stores videos in 3 second video files.
An hour long recording is stored into 60 subfolders (one for each minute). And in each of those subfolder are 20 mp4 files. (one mp4 is 3 seconds)


I found a way of doing it by having to copy each and every one of those small mp4 files into one main folder. Then use command prompt :


(for %i in (*.mp4) do @echo file '%i') > mylist.txt 



to make a list file


then run :


ffmpeg -f concat -i mylist.txt -c:v copy output2.mp4



And this gets the job done. But is there any graceful way of doing it without having to copy paste all of the video files ?