
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (94)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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 (...)
Sur d’autres sites (8566)
-
Is ffmpeg running in CPU or GPU ?
14 juillet 2016, par Raghul SelvarajIt has been shown in the link
https://dri.freedesktop.org/wiki/IntelPerformanceTuning/
Step 2 : CPU vs GPU
that if the CPU % is more than 90 then the app is running in CPU.
While configuring ffmpeg, I enabled opencl. ffmpeg configurations are,
ffmpeg version ebe0fa0 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-4)
configuration: --enable-gpl --enable-libx264 --enable-opencl --enable-nonfree --enable-libmfx --enable-libmp3lame --enable-libaacplus
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
libpostproc 53. 3.100 / 53. 3.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...But while running ffmpeg using the command
ffmpeg -i /home/M.mp4 -c:v h264 -preset:v faster /home/out.avi
the CPU% has been more than 90 (375%).
In case of ImageMagick, if I enable opencl while configuring, then the app will run in GPU, i.e., the CPU% will be less than 90. I noticed that.
But in case of ffmpeg, it is GPU accelerated one. Then, Why the CPU% is more than 90% ? Is the ffmpeg running in CPU or GPU ? If it is not, how can I make it to run in GPU ?
-
Is ffmpeg running in CPU or GPU ?
25 mai 2021, par Raghul SelvarajIt has been shown in the link





https://dri.freedesktop.org/wiki/IntelPerformanceTuning/

 

Step 2 : CPU vs GPU





that if the CPU % is more than 90 then the app is running in CPU.



While configuring ffmpeg, I enabled opencl. ffmpeg configurations are,



ffmpeg version ebe0fa0 Copyright (c) 2000-2015 the FFmpeg developers
 built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-4)
 configuration: --enable-gpl --enable-libx264 --enable-opencl --enable-nonfree --enable-libmfx --enable-libmp3lame --enable-libaacplus
 libavutil 54. 31.100 / 54. 31.100
 libavcodec 56. 60.100 / 56. 60.100
 libavformat 56. 40.101 / 56. 40.101
 libavdevice 56. 4.100 / 56. 4.100
 libavfilter 5. 40.101 / 5. 40.101
 libswscale 3. 1.101 / 3. 1.101
 libswresample 1. 2.101 / 1. 2.101
 libpostproc 53. 3.100 / 53. 3.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...




But while running ffmpeg using the command



ffmpeg -i /home/M.mp4 -c:v h264 -preset:v faster /home/out.avi



the CPU% has been more than 90 (375%).



In case of ImageMagick, if I enable opencl while configuring, then the app will run in GPU, i.e., the CPU% will be less than 90. I noticed that.



But in case of ffmpeg, it is GPU accelerated one. Then, Why the CPU% is more than 90% ? Is the ffmpeg running in CPU or GPU ? If it is not, how can I make it to run in GPU ?


-
what is the best way to append a video file to multiple video files using batch file [on hold]
5 avril 2017, par JAGGADAKUi am beginner with computer programming and i have knowledge of c/c++
from [https://trac.ffmpeg.org/wiki/Concatenate][1] i have learned that how to merge video files using ffmpeg
To list all video files containing in a folder
(for %%i in (*.mp4) do @echo %%i) > mylist.txt
to concatenate files
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
This merges all files of a list to one single file.
but How do i append one video file(main.mp4) at the starting of all the video files listed in mylist.txt ?can someone help me ?
Hello there
i have tried following code i don’t know what’s wrong with it but it is not `
@echo off
(for %%i in (*.mp4) do @echo %%i) > mylist.txt
for /F "tokens=*" %%A in (mylist.txt) do (
echo %%A
ffmpeg -i "concat:main.mp4|%%A" -c copy %%Aoutput.mp4
)
`