
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (99)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (13810)
-
Revision 6c667f0ffe : Limit transform sizes searched for uv intra. Apply limit if search_method == US
16 juillet 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Limit transform sizes searched for uv intra.Apply limit if search_method == USE_LARGESTALL
to the range of UV tx sizes searched.Change-Id : I6db29f0dd237285ffc50d75a37e8b68151ad821c
-
mjpegdec : apply flipping after decoding, not before
20 décembre 2013, par Anton Khirnov -
Redirecting output to different path
9 septembre 2020, par user14245857this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.


Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.


Code is as follows :


$inputfiles = ls *.mxf

 foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

 ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}



Looking forward to your answers


Thank you very much in advance