Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (106)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6268)

  • how to do marquee type watermark in videos [closed]

    1er février 2013, par KRUNAL DOSHI

    I have seen videos which have marquee type watermark. i search about this in google and other forums but didn't get anything.
    How to add watermark like marquee in video ?

  • Sync issue for some videos, when using MediaCodec with FFMPEG

    11 novembre 2015, par 123rgt

    I’m using FFMpeg to get the packets from video, and MediaCodec for hw decoding the video. I’m using pkt->pts value for sync. But for the videos with pkt->pts==AV_NOPTS_VALUE, the sync fails. I can’t use av_frame_get_best_effort_timestamp since the packet is directly decoded and rendered to surface by MediaCodec. What can I do for correct this sync issue ?

  • FFMPEG joining multiple videos in grid

    31 mars 2020, par Adam Gosztolai

    I am trying to join a series of videos in a grid. Here is a command I used for 3 videos.

    ffmpeg -y -i /mnt/labserver/vid1.mp4 -i /mnt/labserver/vid2.mp4 -i /mnt/labserver/vid3.mp4 -filter_complex "color=s=360x360:c=Black [nbase];[0:v]setpts=PTS-STARTPTS,scale=180x180[b0];[1:v]setpts=PTS-STARTPTS,scale=180x180[b1];[nbase][b0]overlay=shortest=1:x=0:y=180[temp0];[temp0][b1]overlay=repeatlast=1:x=0:y=360[temp1];[temp1][b2]overlay=repeatlast=1:x=0:y=540[temp2]" -c:v libx264 -pix_fmt yuv420p /mnt/labserver/videos_joined.mp4

    I get the following error

    Invalid stream specifier: b2

    As far as I recall this has previously worked for me. Could someone tell me what could be wrong here and whether perhaps the error depends on the FFmpeg version ?

    Thank you !!