Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (39)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

  • Is it possible to have a progress bar without a loop ?

    26 novembre 2017, par Kurt

    I am using FFmpeg to do some video editing. I would like to have a progress bar but there is not a loop in my code. I’ve tried tqdm and putting my code in a loop with a range of 1 but that will only display the progress bar at 100%. Maybe there is another way to accomplish this ? This is the code I’m using :

    import subprocess

    inmovie=mymovie.mp4
    speed=str(4.0)
    outmovie=newmovie.mp4
    print('Converting file.......')
    subprocess.call('ffmpeg -i '+inmovie+' -filter:v "setpts= '+speed+' *PTS" '+outmovie, shell=True)
    print('Conversion done')
  • Is there a way of using ffmpeg in c# app ?

    6 mai 2015, par randomuser1

    I’m using the ffmpeg.org and when I run ffmpeg -y -f vfwcap -r 25 -i 0 out.mp4 in command line I can grab the video from my webcam and write it to the out.mp4 file. However, I can’t see that stream anywhere. I thought about writing some simple wrapper in c# that is built on ffmpeg functionality, so far I found post mentioned on Stack before, but there’s nothing about displaying the data live (instead of saving it into the file). Does anyone have any experience with it ? Can I for example ’draw’ the received data from webcam on a picture box or on some other component ?
    Thanks !

  • Python ffmpeg 5_second_video.mp3 : No such file or directory Conversion failed

    10 septembre 2017, par blacklight

    Here is my python code :

       call(['ffmpeg', '-loop', '1',  '-y', '-i', '5_second_video.jpg', '-i','5_second_video.mp3' , '-acodec', 'copy', '-vcodec', 'libx264', '-shortest', song +'.mp4'], shell=False)

    There is a file called 5_second_video.mp3 in my desktop but it is returning me this error

    5_second_video.mp3 : No such file or directory
    Conversion failed !