Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (59)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • How to solve the problem of low performance of complex video generation using ffmpeg ?

    21 novembre 2019, par Zedd

    I use ffmpeg to generate a complex video.

    This video consists of the following materials :

    1. Original video

    2. Video dub

    3. Background music

    4. Subtitle

    My code logic is as follows

    1. Combine ’Original video’ and ’Video dub’ into ’Video A’

    2. Subtitle ’Video A’ as ’Video B’

    3. Add ’Background music’ for ’Video B’ as ’Video C’

    The ’Video C’ is the video I want.

    My Code

    // Step1:
    ffmpeg -i VideoDub.mp3 -i OriginalVideo.mp4 VideoA.mp4
    // Step2:
    ffmpeg -i VideoA.mp4 -vf subtitles=Subtitle.srt -y VideoB.mp4
    // Step3:
    ffmpeg -i VideoB.mp4 -i BackgroundMusic.mp3 -filter_complex "[1:a]aloop=loop=-1:size=2e+09[out];[out][0:a]amix" -ss 0 -t 100 -y VideoC.mp4

    Design defect

    • I think my code is very redundant
    • poor performance
    • There are many times of encoding
    • It takes too long to generate such a video
    • The CPU usage has reached 100%.

    My Question

    How to solve the above problem?

  • avformat/hlsenc : fix write wrong init file URI string problem

    18 mars 2018, par Steven Liu
    avformat/hlsenc : fix write wrong init file URI string problem
    

    fmp4_init_filename should append after base_output_dirname

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • Revision 1b5d612b5d : Merge "Add a guard on intra mode skip control for RTC mode"

    19 décembre 2014, par Jingning Han

    Merge "Add a guard on intra mode skip control for RTC mode"