Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (35)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • h264 : check mb_width/height

    6 mai 2013, par Michael Niedermayer
    h264 : check mb_width/height
    

    Fixes inconsistency that leads to out of array accesses with threads

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.c
  • FFMPeg hstack video not same height

    30 mars 2022, par Spartan 117

    I am currently trying to horizontally stack multiple video files and receiving this error

    &#xA;

    [libvorbis @ 000001bb38f23a80] Queue input is backward in &#xA;timerate=N/A speed=   0x&#xA;[libvorbis @ 000001bb38f23a80] Queue input is backward in &#xA;timetrate= 799.4kbits/s dup=0 drop=3894 speed=15.7x&#xA;[libvorbis @ 000001bb38f23a80] Queue input is backward in &#xA;timetrate= 798.7kbits/s dup=0 drop=3924 speed=15.8x&#xA;[Parsed_hstack_2 @ 000001bb3a3411c0] Input 1 height 480 does not &#xA;match input 0 height 360.op=3929 speed=  16x&#xA;[Parsed_hstack_2 @ 000001bb3a3411c0] Failed to configure output pad &#xA;on Parsed_hstack_2&#xA;Error reinitializing filters!&#xA;Failed to inject frame into filter network: Invalid argumentError &#xA;while processing the decoded data for stream #0:0&#xA;

    &#xA;

    This is my command.

    &#xA;

    ffmpeg -i RT05974d20e9550b89697b15f8bc3feb78.mkv -i RTb295d0534191e1acb22a45bb971a12e6.mka -i RTc2de0d06575c6c225b44dbce73104ed8.mkv -i RT3904b3a60273760ec9e9c181ea35bdc4.mka -i RT13386752138abbe5eb941da3f7fdfdc5.mka -i RTe31da14ad7c898ad8d8ce6bbafc5e387.mkv -i RT103bfe5f4b129860f69cd8e820f3a10b.mka -i RT2e5859b6a555070f3305735c698966d0.mka -filter_complex "[2:v]tpad=start_duration=120:color=black[vpad]; [3:a]adelay=120000:all=1[a2pad]; [4:a]adelay=150000:all=1[a3pad]; [5:v]tpad=start_duration=20:color=black[v2pad]; [6:a]adelay=200000:all=1[a5pad]; [7:a]adelay=240000:all=1[a6pad]; [0:v][vpad][v2pad]hstack=inputs=3[vout]; [1:a][a2pad][a3pad][a5pad][a6pad]amix=inputs=5:weights=1|1|1|1|1[aout]" -map [vout] -map [aout] output.mkv&#xA;

    &#xA;

    I then also checked each file individually to make sure that their height and width were correct.

    &#xA;

    ffprobe -v error -select_streams v -show_entries stream=width,height -of csv=p=0:s=x RT05974d20e9550b89697b15f8bc3feb78.mkv&#xA;640x480&#xA;ffprobe -v error -select_streams v -show_entries stream=width,height -of csv=p=0:s=x RTc2de0d06575c6c225b44dbce73104ed8.mkv&#xA;640x480&#xA;ffprobe -v error -select_streams v -show_entries stream=width,height -of csv=p=0:s=x RTe31da14ad7c898ad8d8ce6bbafc5e387.mkv&#xA;640x480&#xA;

    &#xA;

    Full log pasted here - https://pastebin.com/0XEipXjA

    &#xA;

    Log when only two files are used - https://pastebin.com/AVYisBeh

    &#xA;

    Log when that first video file is not used (works) - https://pastebin.com/8YfHRsQ1

    &#xA;

    What am I doing incorrectly ?

    &#xA;

  • avutil/imgutils : av_image_check_size2() ensure width and height fit in 32bit

    10 juillet 2024, par Michael Niedermayer
    avutil/imgutils : av_image_check_size2() ensure width and height fit in 32bit
    

    width and height > 32bit is not supported and its easier to check in a central place

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/imgutils.c