Recherche avancée

Médias (91)

Autres articles (64)

  • 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 (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (10668)

  • HOWTO : Transitions between videos using ffmpeg [on hold]

    24 juillet 2013, par DenisKo

    I have two videos and want to join them with transition effect between. I have a solution with melt. It works great, but it would be better solution for me if I could do that using ffmpeg.. Is there any possibility to do that ? There are some filters related in ffmpeg - blend, overlay etc. but it is not obviously using them in my case. Thanx !

    melt 1.mpg 2.mpg -mix 30 -mixer luma -consumer avformat:fade.mpg vcodec=mpeg1video vb=25000k minrate=25000k maxrate=25000k bufsize=5000k

    (30 frames transition (1sec) between videos 1.mpg and 2.mpg)

  • How to rotate and merge mp4 videos with ffmpeg ?

    7 mars 2016, par Ara Badalyan

    I have two videos test.mp4 and test2.mp4, can i rotate video’s then merge with one ffmpeg command ?

    I can do that separate

    For example I rotate videos wirh this command

    ffmpeg -i test.mp4 -filter_complex transpose=1 test_rotate.mp4

    And merge with this command

    ffmpeg -f concat -i c:/ffmpeg/merge.txt -codec copy output.mp4

    But when I want to use them together it says "Filtering and streamcopy cannot be used together"

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