Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (35)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

  • FFMPEG : Overylaying multiple videos with offset

    4 novembre 2014, par user1064504

    I am trying to overlay multiple videos in a split screen, with different offset (Audio, video both offset), initially I tried offsetting & overlaying like following

    avconv -i 1.webm -itsoffset 2 -s 640x480 -vf "movie=1.webm, scale=320:480 [vid2]; [vid2] overlay=0:0 [basis1]; [basis1][1] overlay=320:0" splitScreenOut.mp4

    & overlayed videos being offset by

    movie=overlay.avi:seek_point=1.4

    But this approach didn’t worked on my end, the -itsoffset offsets entire video output & seek_point wasn’t recognized by my ffmpeg build.

    Then I tried offsetting each video individually.

    avconv -itsoffset 4 -i 1.webm -c copy tmp1.webm

    & simply overlaying

    avconv -i tmp1.webm -s 640x480 -vf "[in] scale=640/3:480, pad=3.01*iw:ih [video0]; movie=tmp2.webm, scale=640/3:480 [video1];[video0][video1] overlay=(640)/3:0 [VidO1]; movie=tmp3.webm, scale=640/3:480 [video2];[VidO1][video2] overlay=(640/3)*2:0 [out]" -b:v 768k Output.webm

    The problem is all video start in split screen, from offset of first video as if individually offsetting didn’t worked.

  • FFMPEG, AVCONV:Overylaying multiple videos with offset

    4 novembre 2014, par user1064504

    I am trying to overlay multiple videos in a split screen, with different offset (Audio, video both offset), initially I tried offsetting & overlaying like following

    avconv -i 1.webm -itsoffset 2 -s 640x480 -vf "movie=1.webm, scale=320:480 [vid2]; [vid2] overlay=0:0 [basis1]; [basis1][1] overlay=320:0" splitScreenOut.mp4

    & overlayed videos being offset by :

    movie=overlay.avi:seek_point=1.4

    But this approach didn’t worked on my end, the -itsoffset offsets entire video output & seek_point wasn’t recognized by my avconv build.

    Then I tried offsetting each video individually.

    avconv -itsoffset 4 -i 1.webm -c copy tmp1.webm

    & simply overlaying

    avconv -i tmp1.webm -s 640x480 -vf "[in] scale=640/3:480, pad=3.01*iw:ih [video0]; movie=tmp2.webm, scale=640/3:480 [video1];[video0][video1] overlay=(640)/3:0 [VidO1]; movie=tmp3.webm, scale=640/3:480 [video2];[VidO1][video2] overlay=(640/3)*2:0 [out]" -b:v 768k Output.webm<

    The problem is all video start in split screen, from offset of first video as if individually offsetting didn’t worked.

  • avcodec/nvenc : offset dts to account for b-frame reordering

    1er mai 2020, par Timo Rothenpieler
    avcodec/nvenc : offset dts to account for b-frame reordering
    

    Fixes ticket #7303

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.c