Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (37)

  • 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

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

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

Sur d’autres sites (6499)

  • avcodec/mpeg12 : Don't initialize encoder-only parts of RLTable

    8 décembre 2020, par Andreas Rheinhardt
    avcodec/mpeg12 : Don't initialize encoder-only parts of RLTable
    

    ff_mpeg12_init_vlcs() currently initializes index_run, max_level and
    max_run of ff_rl_mpeg1/2 ; yet the only user of these fields is the
    MPEG-1/2 encoder which already initializes these tables on its own.
    So remove the initializations in ff_mpeg12_init_vlcs() ; this also
    simplifies making ff_mpeg12_init_vlcs() thread-safe.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/mpeg12.c
    • [DH] libavcodec/mpeg12.h
    • [DH] libavcodec/mpeg12enc.c
  • Can ffmpeg extract multiple parts of a video file in a single command ?

    18 décembre 2020, par rcliao

    I have some huge MPEG files that is 24 hours long, and I need to extract a few parts (about 30 minutes each) of it into frame sequences (still images). I tried using commands like following :

    &#xA;

    ffmpeg -i input.mpeg -ss 4:00:00 -to 4:30:00 outpath1\%05d.png&#xA;ffmpeg -i input.mpeg -ss 6:00:00 -to 6:30:00 outpath2\%05d.png&#xA;...&#xA;

    &#xA;

    But it seems that each time it is executed, ffmpeg scans the file from the beginning, causing the process to be very slow.

    &#xA;

    For example, when I execute the above commands to extract the part of 4:00:00-4:30:00, ffmpeg will scan from 0:00:00 to 4:00:00, start extracting the image sequence, and stop at 4:30:00 ; and then I execute another command to extract the part of 6:00:00-6:30:00, and ffmpeg scans from 0:00:00 again to 6:00:00, and then start extracting.

    &#xA;

    So I wanted to simplify this process to save time. Is there a way to extract multiple parts in a single command ? Like scans from 0:00:00 to 4:00:00, start extracting to 4:30:00, stop extracting and continue scanning to 6:00:00, and start extracting again...until the last part. Can ffmpeg do this ?

    &#xA;

  • How to convert a CCTV footage into time lapse video by cutting parts of the video by a set interval on FFMPEG [duplicate]

    2 décembre 2020, par mark

    I have bunch of CCTV footages and I want it to look like it was recorded from a time lapse camera. One video file is around 3 hours long capturing scenes in real time (from 1pm-3pm for example). And in one day, I'll get around 8 footages (8files * 3hours = 24hours = 1 day)

    &#xA;

    I want to convert those 24hours worth of footages to 1min making 1 day = 1min of video not just making it fast but actually cutting some of the scenes by a set interval. Usually, a time lapse camera has an interval of one photo per 10 min and at the end of the day, it will stitch them into one video. How can I do something like that on FFMPEG ?

    &#xA;

    I'm using FFmpeg Batch converter and here's my code so far. It just makes my videos faster but not cutting it into itervals

    &#xA;

    -filter:v "setpts=0.25*PTS" -an&#xA;

    &#xA;

    I ended up with this code :

    &#xA;

    -vf framestep=25,select=&#x27;not(mod(n,1000))&#x27;,setpts=N/FRAME_RATE/TB -an&#xA;

    &#xA;

    The above code will make a 1hr long video into 4sec which is perfect for my needs.

    &#xA;