Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (55)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • Recognize start of piano music in an MP3 file which starts with a spoken introduction, and remove spoken part, using Python

    22 août 2020, par user3716846

    I have a number of .mp3 files which all start with a short voice introduction followed by piano music. I would like to remove the voice part and just be left with the piano part, preferably using a Python script. The voice part is of variable length, ie I cannot use ffmpeg to remove a fixed number of seconds from the start of each file.
Is there a way of detecting the start of the piano part and then know how many seconds to remove using ffmpeg or even using Python itself ?.
Thank you

    


  • How to apply an ffmpeg audio effect only on a part of a video ?

    25 mars 2021, par Michael Ben Haym

    
My question is how can I apply an ffmpeg audio effect only on a certain part of a video and not on 100% of the video.
    
I have for example the following command :
    


    ffmpeg -i input.mp4 -filter_complex "afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75" output.mp4


    


    this command works perfectly for me but if for example I have a video of 30 seconds and want the effect to be applied only on seconds 20-25, how do I do it ?
    
Thanks !

    


  • A question about ffmpeg drawtext, After 60 seconds, display 5 seconds interval 5 seconds

    27 juin 2020, par rancongjie

    I want to add a watermark to my video, but I don't want to add it at the beginning of the video, After the beginning of video ,about 60s, I want the watermark to display every 60s for 30s. How should i write:

    


    ffmpeg  -i input.mp4 -vf "drawtext=fontfile=MS.ttf:text='TEST':x=w-500:y=h-150:start_number=250:enable=lt(mod(t\,60)\,30):fontsize=40:fontcolor=white:shadowy=2" -c:v h264_videotoolbox -b:v 2000k -s 1280x720 output.mp4


    


    thank you all