Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (56)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Revision 90874 : revert de 90704 il y a bien une erreur, (merci RastaPopoulos et ...

    11 juin 2018, par tofulm@… — Log

    revert de 90704
    il y a bien une erreur, (merci RastaPopoulos ? et désolé)
    Je préfère revenir en arrière pour l’instant et voir par la suite

  • Revision 90874 : revert de 90704 il y a bien une erreur, (merci RastaPopoulos et ...

    11 juin 2018, par tofulm@… — Log

    revert de 90704
    il y a bien une erreur, (merci RastaPopoulos ? et désolé)
    Je préfère revenir en arrière pour l’instant et voir par la suite

  • Using Cut with Fast Seek -ss -to and HH:MM:SS:MS

    1er avril 2019, par Matt McManis

    I’m trying to cut a video using -ss and -to using HH:MM:SS:MS time.

    I’m using -to instead of -t because I want the cut to be "between" a time range and not "up to" time.
    I also have to use -to because it’s needed for another program’s time input textbox I’m using. I won’t be able to use -t for this case.

    Example :

    https://superuser.com/a/670590

    -ss 00:01:00:00 -to 00:02:00:00 cut starts at minute 1, ends at minute 2.
    -ss 00:01:00:00 -t 00:02:00:00 cut starts at minute 1, ends at minute 3.

    https://trac.ffmpeg.org/wiki/Seeking#Cuttingsmallsections


    Problem

    I’m not able to use Fast Seek, -ss before the -i, -to after.

    I’m only able to use Slow Seek, -ss and -to after the -i.


    1. Fast

    Doesn’t Work

    This cuts a minute ahead of what’s in the time.

    Cuts from 00:01:00 to 00:03:00, using the faster seek.

    ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy cut.mp4

    2. Slow

    Works

    I’m trying to do this but with fast seek.

    Cuts from 00:01:00 to 00:02:00, using the slower seek.

    ffmpeg -i video.mp4 -ss 00:01:00 -to 00:02:00 -c copy cut.mp4

    3. Fast

    Works (with problems)

    -copyts ruins video time bar in player.

    Cuts from 00:01:00 to 00:02:00, using the faster seek.

    ffmpeg -ss 00:01:00 -i video.mp4 -to 00:02:00 -c copy -copyts cut.mp4