Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (77)

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

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

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

Sur d’autres sites (10117)

  • How can I resize an overlay image with ffmpeg ?

    28 novembre 2020, par Andrei Dascalu

    I am trying to add an overlay to a video using the following command

    


    ffmpeg -y -i "$videoPath" -i "$overlayPath" -filter_complex "[0:v] [1:v] overlay=$overlayPosition" -pix_fmt yuv420p -c:a copy "$outputPath" 


    


    However, I would like to be able to resize the overlay I am about to apply to some arbitrary resolution (no care for keeping proportions). However, although I followed a couple of similar solutions from SO (like FFMPEG - How to resize an image overlay ?), I am not quite sute about the meaning of the parameters or what I need to add it in my case.

    


    I would need to add something like (?)

    


    [1:v]scale=360:360[z] [1:v]overlay=$overlayPosition[z]


    


    This doesn't seem to work so I'm not sure what I should be aiming for.

    


    I would appreciate any assistance, perhaps with some explanation.

    


    Thanks !

    


  • Converting bin&amp format to mp4 with ffmpeg fails

    31 octobre 2017, par Vincent

    I am trying to download videos from Wistia and I managed to download them but in .bin&amp format ; I’d like to convert them to .mp4 in order to use OpenCV. For this I am calling ffmpeg with subprocess on Python but I get 1 as the value for the return code, meaning the process has failed. Any idea why, and how I can change this...?

    Code is the following :

    import subprocess

    infile = filename #a bin&amp file
    outfile = filename[:-7]+'mp4'

    subprocess.run(['ffmpeg', '-i', infile, outfile],shell=True)

    I get :

    CompletedProcess(args=['ffmpeg', '-i', '58c63bccfcc1c150646c261caad97a58ced4b5e3.bin&amp', '58c63bccfcc1c150646c261caad97a58ced4b5e3.mp4'], returncode=1)

    Also, it works in the command prompt...

    Thank you for your help,

    Sincerely,

  • How to extract all audio start and end time from a video file using ffmpeg

    29 avril 2020, par user3699262

    I need to know from a video file, how do I extract all audio timestamp meaning start time and end time of each dialog. Having tried with multiple ffmpeg or ffprobe commands but not getting the desire result.

    



    My desire result would be like,

    



    'text' : "Hello Robert ! How are you", 'start' : 0.15, 'end' : 1.00
'text' : "Hey, I'm fine. What's about you ?", 'start' : 1.35, 'end' : 2.05
.
.