Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

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)

  • Remove 50 seconds every minute with FFMPEG [duplicate]

    2 août 2020, par Mathias Nervik

    I have a video that is about 5 minutes, and I want to remove 50 seconds every minute. Meaning that the end video should play normally for the first 10 seconds, then skip 50 seconds and play the first 10 seconds from the second minute, then skip 50 seconds...

    


  • Using ffmpeg with subprocess python

    23 décembre 2018, 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,

  • Where is the description for the '-strict' option of ffmpeg command ?

    21 septembre 2022, par tristan_jia

    I found a proper way from this post to trim videos by start and end time(in seconds), like :

    


    ffmpeg -i input.mp4 -ss 15.5 -to 18.98 -strict -2 out.mp4


    


    But I cannot find any description about this -strict from ffmpeg's official site. Anyone can give me a hint about the meaning of this option ? Thanks !