Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (46)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • Add watermark text on mkv video using ffmpeg on windows version

    27 mars 2018, par Movie now

    I want to put a text watermark on my mkv video using ffmpeg which appears almost 3 times for a short period of time in the whole video.

    The code that i am using :

    ffmpeg
     -i Kaalakaandi.mkv
     -map 0
     -vf "drawtext=enable='between(t,600,660)':fontsize=20: \

    fontfile=C:\Windows\Fonts\arial.ttf:
     text='For More Visit Movienow.me':
     x=w-tw-10:
     y=h-th-10" -c:
     v libx264 output.mkv

    But I am getting this error :

    At least one output must be specified

  • Ubuntu ffmepg watermark position

    8 juillet 2015, par Arnas Pečelis

    so I have command :

    ffmpeg -i prepared/video.mp4 -i units/video_watermark.png -filter_complex overlay=main_w-overlay_w-10:main_h-overlay_h-10 -codec:a copy moved/video_test.mp4

    which should describe watermark position on bottom right but the watermark appears on the bottom center. what i’m doing wrong ?

    also I tried this command :

    ffmpeg -i prepared/video.mp4 -vf "movie=units/video_watermark.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" moved/output.mp4

    but with it watermark was not added, video was corrupted becouse of response :

    [aac @ 0x3556540] The encoder ’aac’ is experimental but experimental codecs are not enabled, add ’-strict -2’ if you want to use it.

    where is the clue ?

  • Adding GIF as Watermark and Loop FFMPEG

    27 avril 2018, par Muhammad Sanaullah

    I try to add GIF over a video and continuously loop, but it animate once and stop on the video

    ffmpeg.exe -i "video.mp4" -i "ani.gif" -filter_complex "[1:v]format=yuva444p,setsar=1,scale=80:80,rotate=PI/6:c=black@0:ow=rotw(PI/6):oh=roth(PI/6) [rotate];[0:v][rotate] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2" -codec:a copy -y output.mp4

    What is the solution ?

    Thanks,