Recherche avancée

Médias (91)

Autres articles (54)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

  • avcodec/mpeg12enc : Don't initialize unused parts of RLTable

    22 octobre 2022, par Andreas Rheinhardt
    avcodec/mpeg12enc : Don't initialize unused parts of RLTable
    

    ff_rl_init() initializes RLTable.(max_level|max_run|index_run) ;
    max_run is unused by the MPEG-1/2 encoders (as well as SpeedHQ).
    Furthermore, it initializes these things twice (for two passes),
    but the second half of this is never used.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12enc.c
  • avcodec/speedhqenc : Don't initialize unused parts of RLTable

    22 octobre 2022, par Andreas Rheinhardt
    avcodec/speedhqenc : Don't initialize unused parts of RLTable
    

    ff_rl_init() initializes RLTable.(max_level|max_run|index_run) ;
    max_run is unused by the SpeedHQ encoder (as well as MPEG-1/2).
    Furthermore, it initializes these things twice (for two passes),
    but the second half of this is never used.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/speedhqenc.c
  • fluent ffmpeg => how to trim and concate parts of video into one output file without writing many output files. Make a most efficient solution

    30 avril 2024, par Shreyansh Gupta

    I'm currently working on a online video website and i need to make a quick preview of videos using random timestamps and duration of the video.

    &#xA;

    Suppose the video is of 15 min then i want to cut out some parts like ->

    &#xA;

    1. from 00:00:40 take out next 2s &#xA;2. from 00:01:20 take out next 2s &#xA;3. ... and so on until the new video becomes 15s&#xA;

    &#xA;

    How can i do this with fluent-ffmpeg in the nodejs project

    &#xA;

    Can i get the most efficient way of doing this without writing many output files and then concating them separately and removing then later

    &#xA;

    Only concating the trimmed videos in one output file and save when it is done.

    &#xA;

    I also came through a solution that uses complex filters but i don't know how to use it

    &#xA;

       ffmpeg("video.mp4")&#xA;  .complexFilter([&#xA;    ....// some filters here&#xA;&#xA;  ])&#xA;  .on(&#x27;end&#x27;,  function () {&#xA;    console.log(&#x27;files have been merged and saved.&#x27;)&#xA;  })&#xA;  .on(&#x27;error&#x27;,function (err){&#xA;    console.log(err)&#xA;  }&#xA;  .saveToFile("output.mp4")```&#xA;

    &#xA;