
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (30)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4587)
-
How to make ffmeg automatically overwrite a file with the same name ?
27 janvier 2021, par tkinterpy -
how to name the output file same as input file but different extension after video conversion ? [duplicate]
4 mars 2018, par kofheartsThis question already has an answer here :
I am using this line to batch convert mp4 files to webm files. For all mp4 files i need the output files to be of same name but .webm extension. For example if i have video1.mp4 and video2.mp4 then after conversion i need two files i.e video1.webm and video2.webm. How can i achieve this using bash script ?
for f in *.mp4; do ffmpeg -i "$f" -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis "$f".webm; done
The above code will change the output file to video1.mp4.webm. Thanks !
-
avformat/dash : move reused API to common file and header file
1er septembre 2017, par Steven Liuavformat/dash : move reused API to common file and header file
move from dashenc, move DASHTmplId and dash_fill_tmpl_params to
dash.c, they will be used by dash demuxer and dash muxer.v2 fixed :
1. rename common file from dashcomm.* to dash.*
Suggested-by : Hendrik Leppkes <h.leppkes@gmail.com>v3 fixed :
1. rename header file pre defined
2. add ff_ prefix for the internal API
Suggested-by : James Almer <jamrial@gmail.com>Suggested-by : Timo Rothenpieler <timo@rothenpieler.org>
Reviewed-by : wm4 <nfxjfg@googlemail.com>
Signed-off-by : Steven Liu <lq@onvideo.cn>