Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (38)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (4278)

  • what is the best way to append a video file to multiple video files using batch file [on hold]

    5 avril 2017, par JAGGADAKU

    i 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

    )
    `
  • Is ffmpeg running in CPU or GPU ?

    25 mai 2021, par Raghul Selvaraj

    It 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 ?

    14 juillet 2016, par Raghul Selvaraj

    It 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 ?