
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
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
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (19)
-
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (3653)
-
avfilter/vf_showinfo : small adjustments for the HDR10+ dump
13 octobre 2021, par Limin Wangavfilter/vf_showinfo : small adjustments for the HDR10+ dump
summary for the adjustments :
1, remove the extra "," in the ,
...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
to
...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.90132, add "," between the and new field
fraction_bright_pixels
to
, fraction_bright_pixels3, remove the extra space between " "
...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
to
...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
How to batch convert mp4 files to ogg with ffmpeg using a bash command or Ruby
3 avril 2013, par TJ SherrillI am running a OSX, don't know tons about video conversions. But I have like 200 videos that are all in mp4 format and won't play in Firefox. I need to convert them to ogg to use the html5 video tag.
These files live in a folder structure that makes it hard to do files one at a time. I would like the bash command or Ruby command to go through all child folders and find all .mp4's and convert them.
I found one reference of how to do this with Google : http://athmasagar.wordpress.com/2011/05/12/a-bash-script-to-convert-mp4-files-to-oggogv/
#!/bin/bash
for f in $(ls *mp4 | sed ‘s/\(.*\)\..*/\1/’)
do
ffmpeg -i $f.mp4 -acodec vorbis -vcodec libtheora $f.ogg
doneBut have no idea how to convert this from linux to osx.
-
Revision 422d7bc918 : Relax maximum Q for extreme overshoot. Added code to relax the active maximum Q
28 octobre 2014, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Relax maximum Q for extreme overshoot.Added code to relax the active maximum Q in response
to extreme local overshoot to reduce bandwidth peaks.The impact is small in metrics terms, but it this helps reduce
bandwidth spikes and overall overshoot in a number of
clips in our tests sets (especially the YT test set).In particular this should help prevent very big spikes where a clip
is mainly easy but has a short hard section. In such a case a choice
of maximum Q for the clip as a whole may allow us to hit the overall
target rate but give some extreme spikes. The chunked encoding in YT
mitigates this problem but it can show up where a longer clip is
coded as a single chunk.Change-Id : I213d09950ccb8489d10adf00fda1e53235b39203