Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Android ffmpeg apply video effects take time

    2 février 2016, par PrvN

    I am using below command to apply effect,its take 6-8 minutes to apply effect for 2min video.
    Please help me to improve effective time for ffmpeg commands.

    String commandStr = "ffmpeg -y -i "
               + mVideoData.getPath()
               + " -strict experimental -vf curves=vintage -s 640x480 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k -vcodec mpeg4 /sdcard/videokit/curve.mp4";

    Thanks in advance.

  • avformat/utils : function to get the formatted ntp time

    7 mai 2018, par Vishwanath Dixit
    avformat/utils : function to get the formatted ntp time
    

    This utility function creates 64-bit NTP time format as per the RFC
    5905.
    A simple explaination of 64-bit NTP time format is here
    http://www.beaglesoft.com/Manual/page53.htm

    • [DH] libavformat/internal.h
    • [DH] libavformat/utils.c
  • FFMPEG merge multiple audio into video in specific time [closed]

    19 avril 2024, par Umar

    Right now i have :

    


      

    • 1 - video (.mp4)
    • 


    • N - audio with its timestamp start and end (.wav)
    • 


    


    I want to merge those audio to the video based on that time with still preserving the original video audio

    


    So that the final illustration will looks like this :

    


    audio       ----aud1------aud2------aud3--------aud4---------audn------->
video+audio ------------------------------------------------------------>


    


    the audio position will be based on the time, i already have this data

    


    start=00:00:12.040,end=00:00:16.640 aud1
start=00:00:16.640,end=00:00:21.520 aud2
...


    


    How to achieve this using ffmpeg

    


    thankyou