Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (63)

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

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

  • HTML5 video source video type codecs parameter with ffmpeg [duplicate]

    25 juin 2016, par Matt Joiner

    This question already has an answer here :

    I’m programmatically adding source tags to a HTML5 video tag. I’m using ffmpeg to generate the content for the source tags. How can I get the appropriate codec value for the source type attribute ?

    <video>
       <source src="{{.StreamURL}}" type="video/mp4; codecs=?">
    <video>
    </video></source></video>
  • Convert one image + one video's audio to video with ffmpeg

    5 septembre 2019, par intrlocutr

    I’m trying to convert one video file (flv) and one image file (jpg) to one mp4 video, with the video’s audio sample rate increased, and the image overlayed on top of the audio.

    Right now I’m using this command :

    ffmpeg -i video.flv -loop 1 -i photo.jpg -y -filter:a "asetrate=55786.5‬" -vcodec png -filter:v "pad=ceil(iw/2)*2:ceil(ih/2)*2" -map 1:0 -map 0:1 -y -tune stillimage finalvideo.mp4

    It produces an mp4 that plays just fine in VLC, but will not upload to YouTube, which is what I eventually want to do. I could convert the flv to an mp3 and then to an mp4, with two separate ffmpeg commands, however I’m running this in an environment where time and resources are limited, so I’d like to avoid that if at all possible.

  • ffmpeg , copy 1st video "codec info" into 2nd video (change 2nd video codec)

    12 juillet 2016, par Tomer

    I’m having 2 videos.
    1st video is the master, it’s codec info needs to be encoded on the 2nd video.
    Means, 2nd video codec will be same as the 1st one.

    I’m having 15 "1st videos" for "Master" codec info and one file that needs to be converted to the various codecs that each file contain.

    Folder contains those files "1st video" :

    2CIF.h264 , 4CIF.h264 , 5MP.h264 , CIF.H264 , CUSTOM.h264 , CUSTOM2.h264 ,
    D1.h264 , HD1080.h264 , HD720.h264 , QVGA.h264 , QXGA.h264 , S5020_HD720_15FPS_1Min.mp4 ,
    SVGA.h264 , UXGA.h264 , VGA.h264

    and the "2nd video" that needs to be converted is : TOM.MP4

    An output of HD720.h264 for example is :

    Input #0, h264, from 'HD720.h264':
     Duration: N/A, bitrate: N/A
       Stream #0:0: Video: h264 (Main), yuv420p, 1280x720, 25 fps, 25 tbr, 1200k tbn, 50 tbc

    An output of TOM.MP4 is :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'TOM.mp4':
       Stream #0:0(eng): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p, 1280x
    720, 14013 kb/s, 30.01 fps, 30 tbr, 90k tbn, 180k tbc (default)

    what will be the right way to convert those files ?

    I need to verify those settings ( got them through MediaInfo )