Recherche avancée

Médias (91)

Autres articles (84)

  • 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

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (9573)

  • MAINTAINERS : add myself for tonemap_opencl

    13 février 2019, par Ruiling Song
    MAINTAINERS : add myself for tonemap_opencl
    

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS
  • Adding audio to an OpenCV video

    21 février 2019, par pcrunn

    I’m trying to make a script that automates the process of making a video and i’m stuck on the part that i add the audio, I’m not sure if i’ll need to use ffmpeg for that and if so, i’m not sure how to use it the proper way to work with OpenCV (Which I use for rendering the video).

    Thanks for your time, Here is my current code (that I found from a website)

    # Creating the video... The worst part. Literally

    width = 1920
    height = 1080
    FPS = 30
    length = 0

    for song in songs:
       length+=song.info.length

    length = int(length)

    fourcc = VideoWriter_fourcc(*'MP42')
    video = VideoWriter('result.avi', fourcc, float(FPS), (width, height))
    for _ in range(FPS*length):
       frame = np.random.randint(0, 256,
                                 (height, width, 3),
                                 dtype=np.uint8)
       video.write(frame)

    video.release()
  • Downloading, transcoding, then streaming on the fly with VLC

    12 avril 2012, par Alexis K

    I need to download a file from a web service the immediatley extract the audio, then transcode it, then stream it out.

    When I use :

    vlc.exe URL :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it is really choppy when I listen to it on the other computer. What is strange also is that for some YouTube links, the above works well, but for others it dosen't work well. I am not sure why this is.

    However, when I download the audio first, then stream it out, like this
    vlc.exe "song.mp3" :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it works well. The issue is I can't always download the song before hand (long pod casts or internet radio...).

    Is there a command or VLC optimization that I can use to help remedy this situation ? Or another program that would be good ?