Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (58)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (7167)

  • 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