Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (99)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (10254)

  • Is it possible to use nvidia hardware to decode videos in opencv ?

    1er janvier 2016, par Mickey Shine

    I am using opencv 3.1 and try to deal with some video files and also streaming videos (rtps ://..). I installed vdpau and compiled ffmpeg 2.8.4 with vdpau enabled. But opencv seems still not using hardware to deocde videos. I don’t use GPU for video output but the integrated graphics.

    [root@localhost ~]# nvidia-smi dmon
    # gpu   pwr  temp    sm   mem   enc   dec  mclk  pclk
    # Idx     W     C     %     %     %     %   MHz   MHz
       0    72    49     0     0     0     0  3505  1001
       1    49    47     0     0     0     0  3505  1001
       0    73    49     0     0     0     0  3505  1001

    The ’dec’ were always 0. So any advices ?

  • Trying to add intro on big amount of videos

    26 novembre 2019, par somerandomdude

    first time asking a question here so sorry if im not doing it right.

    so i’ve got lots of videos on different folders. im trying to add an intro and a watermark on them all
    watermark should be added to the video and then the intro should be added after.
    i tried ffmpeg on a video it worked but the video is so damn slow like x.25 or something

    im trying to write a batch script that does the whole thing on all folders.
    some of them are like :
    folder/video.mp4
    folder/subfolder/subfolder/video.mp4

    i don’t know how to deal with those and im talking like 6k videos.

    again sorry if im not doing it right.
    i tried something like this : in batch.

    (for %%i in (*.mp4) do @echo file '%%i') > ./list.txt
    ffmpeg -f concat -i ./list.txt -c copy ./output.mp4
    PAUSE
  • Remove watermark by merging two videos

    29 septembre 2019, par LoStack

    I have actually two videos, one in high quality but with watermark and the other in poor quality without watermark. They are not synchronized.

    I would like to do something like the removelogo filter of ffmpeg but instead to simply interpolate like removelogo I would like to extract a part of a frame of the poor quality video to put it on the highest quality video with a mask to hide the watermark.

    Unfortunately the two videos are not synchronized and I would like to synchronize with the audio stream.

    Is it possible to do that with ffmpeg ?
    Thank you very much.