Recherche avancée

Médias (91)

Autres articles (41)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • checkasm/riscv : test misaligned before V

    21 mai 2024, par Rémi Denis-Courmont
    checkasm/riscv : test misaligned before V
    

    Otherwise V functions mask scalar misaligned ones.

    • [DH] tests/checkasm/checkasm.c
  • FFmpeg Keeps Outputting 4:3 aspect ratio - No Idea Why

    11 janvier 2020, par John Doe

    This command will produce a 1920x1080 video, however there are borders on the left and right, making it appear 4:3 rather than the proper 16:9, and also warps/stretches the overlays. I have checked (and rechecked) my input files and they’re all 1920x1080. This is such a silly problem and I feel like I’m missing something obvious.

    ffmpeg -y -f concat -i "concat.txt" -i "mask.png" -i "audio.mp3" -filter_complex "[0]scale=3840x2160,zoompan=z='if(lte(zoom,1.0),1.2,max(1.001,zoom-0.0010))':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':fps=15:d=200[p];[p][1]overlay,drawtext=fontfile=Heathergreen.otf:text='Testing':fontcolor=black:fontsize=32:x=140:y=950[v];[2:a]showwaves=mode=cline:s=178x56:r=15:scale=sqrt:colors=0x222222,colorkey=0x000000:0.01:0.1,format=yuva420p[w];[v][w]overlay=108:740,scale=1920:1080[outv]" -map "[outv]" -map 2:a -c:v libx264 -c:a aac -preset ultrafast -shortest "output.mp4"
  • avutil/channel_layout : return earlier on UNSPEC layouts in av_channel_layout_subset()

    25 mars 2022, par James Almer
    avutil/channel_layout : return earlier on UNSPEC layouts in av_channel_layout_subset()
    

    No point running all 64 iterations in the loop to never write anything to ret.
    Also make ambisonic layouts check its mask too while at it.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/channel_layout.c