Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (54)

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

  • 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

  • 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

Sur d’autres sites (11155)

  • how to use ffmpegs's afir in ffmpeg-python

    7 décembre 2023, par Nire

    My goal is to slow down a file and add reverberation using python

    


    here's my code :

    


    import ffmpeg

audio = ffmpeg.input(r'test_files\Gorillaz - Rhinestone Eyes.mp3').audio
audio = audio.filter('rubberband', tempo=0.8, pitch=0.8, pitchq='quality')
# audio = audio.filter('afir', )
output = ffmpeg.output(audio, r'final\test.mp3', format='mp3', audio_bitrate=320_000)
ffmpeg.run(output)


    


    the problem is that I don't know how to properly use afir filter in ffmpeg-python syntax, I tried doing it by hand in command prompt and succeed, but in python it gives me errors

    


    I tried to find information about my problem on the internet, but failed. And also I tried asking chatgpt about all this, but it didn't help either.

    


  • avformat/tee : Refactor close_slaves function in tee muxer

    12 avril 2016, par Jan Sebechlebsky
    avformat/tee : Refactor close_slaves function in tee muxer
    

    Closing single slave operation is pulled out into separate
    function close_slave(TeeSlave*).
    Both close_slave and close_slaves function are moved before
    open_slave function.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Jan Sebechlebsky <sebechlebskyjan@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/tee.c
  • Webm video playing video & audio in Movies & TV app but will only play video in windows media player and html ?

    24 décembre 2019, par Kate LeVering

    I have created a webm video file with transparency with ffmpeg out of a series of png files. Then I add the audio track again in ffmpeg (I have tried both the opus and vorbis codecs). When I play it in the Movies & TV app it plays just fine (audio and video). In windows media player only the video plays. In html (inside a video tag) the video will play if it is set to ’muted’ but if it is not muted it doesn’t play.

    I am not sure what is going on. Does anyone have any insights. Do I need to run the audio from a seperate file ?

    Thanks, Kate