Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (36)

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

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

  • vf_pixdesctest : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_pixdesctest : make config_props work properly when called multiple times.
    
    • [DH] libavfilter/vf_pixdesctest.c
  • Pseudo-streaming mp4 files does not work with flash player

    11 mai 2013, par faridv

    I've got a problem with streaming audio on my website. I thought I could put the MP3 file inside an MP4 container with h264 codec, so I can use pseudo-streaming ability of mp4 codec.

    The code I'm using to convert my files is :

    ffmpeg -i 1.mp3 -y -b:a 32K -vn 1.mp4

    Pseudo-streaming (seeking in not-loaded parts of media) now works in HTML5 player but not in any Flash media players such as JWPlayer or FlowPlayer.

    I've tested my files on both Apache server with h264 module enabled and Nginx with mod_mp4 enabled, but without any lucks.

    I tried MP4Box, QTIndexSwapper and even creating a real video file by mixing of an image loop and my audio file.

    ffmpeg -y -i joojoo.png -i 2.mp3 -vcodec mjpeg havij.mp4
    MP4Box -add havij.mp4 -isma havij_new.mp4

    What am I doing wrong ? What can I do to make it work ?

  • ffplay low-quality, scale interpolation doesn't work

    4 mai 2017, par jorp

    acroding to ffmpeg documentation, ffmpeg uses default scale interpolation : SWS_BICUBIC
    ffplay’s source code has a line :

    static unsigned sws_flags = SWS_BICUBIC;

    I have a 640x360 size h264 mp4 file : A.mp4
    Compare 2 ways to diplay it :

    Way 1 : ffmpeg scale down A.mp4 to B.mp4 (200*122), then ffplay display B.mp4

    ffmpeg.exe -i A.mp4 -s 200*122 B.mp4

    ffplay B.mp4

    Way 2 : ffplay displays A.mp4, use mouse to resize window to 200*122

    ffplay A.mp4

    comparation image
    [A.mp4][3]

    Compare text rendering, way 1 is clearer than way 2.

    I have replaced SWS_BICUBIC into other parameters in ffplay.c, cannot solve the problem.
    I seems like sws_flags doens’t work in ffplay, it always use a low-quality interpolation.
    It’s reproducible on Ubuntu and Windows with ffplay and SDL 1.2.

    How to modify ffplay.c to obtain higher-quality as ffmpeg does ?

    ps : A.mp4 download link :
    github.com/jorp073/jorp073.github.io/blob/master/stackoverflow/A.mp4