
Recherche avancée
Autres articles (33)
-
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (5128)
-
vc-1 : Add platform-specific start code search routine to VC1DSPContext.
21 juillet 2014, par Ben Avisonvc-1 : Add platform-specific start code search routine to VC1DSPContext.
Initialise VC1DSPContext for parser as well as for decoder.
Note, the VC-1 code doesn’t actually use the function pointer yet.Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
-
How to write multi-line batch command that has some lines that start with hyphen '"-"
21 juin 2020, par slyfox1186I am encountering errors when running a long command that I spread out over multiple lines in my batch script. Some of the lines start with a hyphen (
-
) and if I make the command one line it works fine but multi-lined not working.

example.


for %%G in (*.jpg) do (
"%%G" convert ^
-resize 128x128 ^
-ect... ^
-ect... ^
"%%~nG_new.jpg"
)



ImageMagick throws erros as does FFmpeg using this method but working find in a single line command.


-
Powershell Start-Process ffmpeg VS &ffmpeg
3 février 2017, par mathias waegemans# vars
$Temp = 'C:\Temp';
$script:ffmpeg = "C:\encoder\ffmpeg\bin\ffmpeg.exe";
$inputFile = 'C:\Temp\Sequence 07_1_08.mxf'
$outputFile = 'C:\Temp\testfile.mp4'
# Start-Process
$argument = "-i $inputFile -an -pix_fmt yuv420p -c:v libx264 -crf 23 -profile:v high -level 4.1 -aspect 16:9 -flags +ildct+ilme -x264opts weightp=0:tff=1 $outputFile"
Start-Process $script:ffmpeg -ArgumentList $argument #-Wait -NoNewWindow
# &$script:ffmpeg
&$script:ffmpeg -i $($inputFile) -an -pix_fmt yuv420p -c:v libx264 -crf 23 -profile:v high -level 4.1 -aspect 16:9 -flags +ildct+ilme -x264opts weightp=0:tff=1 $outputFileI would like to use the Start-process command but I can’t get it to work properly. It doesn’t do anything.
The &$script:ffmpeg does work with the same FFmpeg parameters, so thats not the problem I guess.