Recherche avancée

Médias (91)

Autres articles (33)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

  • libFLAC : CPUID detecion improvements.

    28 juin 2014, par Erik de Castro Lopo
    libFLAC : CPUID detecion improvements.
    

    According to docs, it’s incorrect to just call CPUID with EAX=1.
    One must to ensure that this value is supported.

    CPUs that don’t support CPUID level 1 are very old, but...
    if FLAC tests CPUID presence it should also test CPUID level support.

    Also the function FLAC__cpu_have_cpuid_asm_ia32 was simplified
    according to the docs at Intel website and in Wikipedia.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/cpu.c
    • [DH] src/libFLAC/ia32/cpu_asm.nasm
  • Writing a Custom Blend for Softlight

    21 mai 2020, par Jonas

    Lately I've been messing around with ffmpeg's blending modes and noticed their algorithms are not entirely the same as in Photoshop. I'm interested in Softlight blend and will use it as an example to illustrate my issue.

    &#xA;&#xA;

    First thing's first, I was able to mimic Photoshop's softlight with the blend and geq filters, but it's painfully slow with video inputs. Problem of geq I guess.

    &#xA;&#xA;

    ffmpeg -i top.png -i bottom.png -filter_complex "[0]format=rgba[a];[1]format=rgba,split[b][b2];[a][b]blend=all_expr=&#x27;if(lt(A\,0.5)\,(2*B*A&#x2B;(B*B)*(1-2*A))/255\,(2*B*(1-A)&#x2B;sqrt(B)*(2*A-1))/255)&#x27;:c3_expr=A,geq=a=&#x27;p(X\,Y)&#x27;:r=&#x27;min(255\,p(X\,Y))&#x27;:g=&#x27;min(255\,p(X\,Y))&#x27;:b=&#x27;min(255\,p(X\,Y))&#x27;[tmp];[b2][tmp]overlay[out]" -map [out] output.png&#xA;

    &#xA;&#xA;

    So it occurred to me that I'd be better off building ffmpeg from source adding in the PS softlight blend formula (note that in the formula a is the bottom layer and b is top, while in the code snippets it's the reverse).

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    I'm introducing changes to vf_blend.c file, line 263

    &#xA;&#xA;

    DEFINE_BLEND8(softlight,  (A > 127) ? B &#x2B; (255 - B) * (A - 127.5) / 127.5 * (0.5 - fabs(B - 127.5) / 255): B - B * ((127.5 - A) / 127.5) * (0.5 - fabs(B - 127.5)/255))&#xA;

    &#xA;&#xA;

    and making it

    &#xA;&#xA;

    DEFINE_BLEND8(softlight,   (A &lt; 127) ? (2*B*A&#x2B;(B*B)*(127.5-2*A))/255 : (2*B*(127.5-A)&#x2B;sqrt(B)*(2*A-127.5))/255)&#xA;

    &#xA;&#xA;

    Result was quite close but not exactly what I want (has a green tint on the output). My question is how can I change that line of code to match the above formula and get the desired softlight blend ?

    &#xA;

  • How to map ffmpeg formats to MIME types and file extensions ?

    12 août 2020, par odigity

    Anyone know of a reference for mapping ffmpeg format values to MIME types and recommended file extension ? My google attempt failed to turn up anything.

    &#xA;&#xA;

    I did manually put together a small list with guess-work and clues from Wikipedia, IANA, and the Mozilla Developer Network for the subset of formats that I encountered in my video input test collection :

    &#xA;&#xA;

    ffmpeg Format             Extension  MIME Type&#xA;───────────────────────   ─────────  ────────────────────── &#xA;asf                       asf        application/vnd.ms-asf&#xA;avi                       avi        video/x-msvideo&#xA;flv                       flv        video/x-flv&#xA;matroska,webm             webm       video/webm&#xA;m4v                       m4v        video/x-m4v&#xA;mov,mp4,m4a,3gp,3g2,mj2   mp4        video/mp4&#xA;mpeg                      mpeg       video/mpeg&#xA;mpegts                    mpeg       video/mpeg&#xA;mpegvideo                 mpeg       video/mpeg&#xA;ogg                       ogv        video/ogg&#xA;matroska                  mkv        video/x-matroska&#xA;webm                      webm       video/webm&#xA;

    &#xA;&#xA;

    No idea if I've made the right calls, though.

    &#xA;&#xA;

    (The test files already have file extensions, but I'm operating on the assumption that the extension of a file a user uploads is irrelevant, and that the file should be renamed based on ffprobe and intelligent mapping...)

    &#xA;