
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (34)
-
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 -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (5093)
-
Revision 8e2c03fbfd : Simplify Zero bin and zero bin run code. Simplification to eliminate a number o
24 janvier 2013, par Paul WilkinsChanged Paths : Modify /vp9/encoder/vp9_onyx_int.h Modify /vp9/encoder/vp9_quantize.c Simplify Zero bin and zero bin run code. Simplification to eliminate a number of very large data data structures. All zero run, zbin boosts for different transform sizes are now limited to a maximum run length of (...)
-
FFMPEG / MinIO - How to assemble images from MinIO to mp4 [closed]
9 juin 2022, par Jacques WolmaransI'm writing a Python application where one part is capturing and storing .jpg images on a Minio server running locally. The other part is used to create a video from the batch of images.


I'm limited with storage and processing on the server its running on, so I've been trying to assemble the images directly from Minio (without downloading them first), but no luck at all.


Any advice or alternatives would be greatly appreciated.


-
Copy metadata from one mp4 file to another in python
8 juin 2020, par hampaniI have a simple script for copying the exif (metadata) from one .jpg to another.



import piexif
import os

for filename in os.listdir(directory):
 if filename.endswith(".jpg"):
 piexif.transplant(exifSrc, filename)
 else:
 continue




I now want to create a script that copies the metadata from one .mp4 to another. However, my programming skills are very limited and I can't even find a library (with documentation that I understand) to even start the project. I think ffmpeg can do the trick, altough I'm not sure.