
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (74)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...)
Sur d’autres sites (14347)
-
mmaldec : limit internal buffering
14 avril 2016, par wm4mmaldec : limit internal buffering
This uses a new MMAL feature, which limits the number of extra frames
that can be buffered within the decoder. VIDEO_MAX_NUM_CALLBACKS can
be defined as positive or negative number. Positive numbers are
absolute, and can lead to deadlocks if the user underestimates the
number of required buffers. Negative numbers specify the number of extra
buffers, e.g. -1 means no extra buffer, (-1-N) means N extra buffers.Set a gratuitous default of -11 (N=10). This is much lower than the
firmware default, which appears to be 96.This is backwards compatible, but needs a symbol only present in newer
firmware headers. (It’s an enum item, so it requires a check in
configure.)Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
How can I limit the file size when doing a write() while writing data from a video stream in Python
8 avril 2016, par Michael BaileyI am pulling in a video stream of an unknown length and writing that file to disc using
.write()
in Python. My basic need is to have a rolling 2-3 minutes of video recorded to that file at all times VS having that file grow to a huge size. On the other end I’m using FFMPEG to grab clips from the .dat file being written.with open("./site/files/tmp/" + hashid + ".dat", 'wb') as f:
while True:
data = stream.read(1024)
f.write(data)Alternately if you know a way I could store that same data in memory probably only 20-50mb (2-3 mins) and send that to FFMPEG that might be an even better option as well. I’m calling FFMPEG via Popen subprocess.
-
FFmpeg command to apply multiple filters and limit the final file size
16 mars 2016, par Konrad — ffmpegI’m using ffmpeg command below to convert video to a format of the defined scale and in order to hardcode the subtitles
Original syntax
ffmpeg -i "Original File.mov" -vf subtitles=Subtitles.srt -vf scale=1920:1080 \
-crf 12 "Final File".movProblem
I would like to expand this command further and :
- ensure that the produce file is under 2GB
- I would like to include additional parameters with advanced subtitle options, like setting the canvas size and fixing the potential delay
Side notes
I reckon that in case of predefining the file size the
-crf 12
paramater will be redundant ?