Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (20)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (4119)

  • FFmpeg - concat multiple videos,with same resolution,some has audio,some without

    24 septembre 2018, par wensefu

    I’m trying to concat some videos with same resolution and same video codec
    into one single video using ffmpeg Concat demuxer ,while some video has audio,some without.

    but I get result of a whole silent video,is there something wrong I did ?

    Many thanks in advance.

  • Ffmpeg desyncing with FFSource

    28 janvier 2014, par Ismaw34

    i don't know how much time i spent doing the batch to stream with twitch, i made a batch file for streaming, but the audio and the video are desyncing over time.

    The batch im using is this :
    http://pastebin.com/NEz2Gvyj

    I dont know if my pc is too old for streaming or if is something else.

    With XSplit the quality is pixelated a lot.
    Can't use OBS.
    With FFSplit is the same as above.

    Thanks in advance.
    - Ismaw34

    EDIT :
    It appears that the new batch is working now. Thanks for all the visits, you can use the batch too.

  • FFMpeg : how to use between() to select last second ?

    13 mai 2019, par rcpinheiro

    I’m trying to apply a caption using drawtext that should disappear one second before the video end :

    ffmpeg -i input.mp4 -vf "drawtext=enable='between(t,0,5)':fontfile=font.ttf:text='Some caption':x=60:y=640:fontsize=40:fontcolor=#f0f0f0@0.9" -vcodec libx264 -crf 27 -preset ultrafast -strict -2 -acodec copy output.mp4

    The problem is that I don’t know the video length beforehand. I’ve tried using ’between(t,0,-1)’ but it doesn’t work, the caption never shows up.
    Anyone knows if is there a way to do this without having to open the video first to check length and only after that draw the caption ?
    Thanks in advance !