Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11257)

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