
Recherche avancée
Autres articles (21)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (6126)
-
avformat/matroskadec : Add a workaround for missing WavPack extradata
14 décembre 2019, par Andreas Rheinhardtavformat/matroskadec : Add a workaround for missing WavPack extradata
mkvmerge versions 6.2 to 40.0 had a bug that made it not propagate the
WavPack extradata (containing the WavPack version) during remuxing from
a Matroska file ; currently our demuxer would treat every WavPack block
encountered as invalid data (unless the WavPack stream is to be
discarded (i.e. the streams discard is >= AVDISCARD_ALL)) and try to
resync to the next level 1 element.Luckily, the WavPack version is currently not really important ; so we
fix this problem by assuming a version. David Bryant, the creator of
WavPack, recommended using version 0x410 (the most recent version) for
this. And this is what this commit does.A FATE-test for this has been added.
Reviewed-by : David Bryant <david@wavpack.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
lavc/libvpxenc : prevent fifo from filling up
7 juillet 2023, par David Lemlerlavc/libvpxenc : prevent fifo from filling up
Prevent the fifo used in encoding VPx videos from filling up and
stopping encode when it reaches 21845 items, which happens when the
video has more than that number of frames.Incorporated suggestion from James Zern to prevent calling
frame_data_submit() at all when performing the first pass of a 2-pass
encode so the fifo is not filled at all ; replaces original patch which
drained the fifo after filling to prevent it from becoming full.Fixes the regression originally introduced in
5bda4ec6c3cb6f286bb40dee4457c3c26e0f78cbCo-authored-by : James Zern <jzern@google.com>
Signed-off-by : David Lemler <david@lemler.family>
Signed-off-by : James Zern <jzern@google.com> -
Rails : MP4 videos showing up blank in Firefox (but works in Chrome)
10 février 2015, par Mark BoulderI got this Rails app with uploaded MP4 videos that play back just fine in Chrome - but why do they show up blank in Firefox ?
The video appears on the page and plays just fine if I download it :
<video loop="loop" src="/path/to/whatever.mp4?1234567"></video>
From Rails I did :
<%= video_tag photo.attachment_url(:medium) %>
I tried adding
Mime::Type.register "video/mp4", :mp4
toconfig/initializers/mime_types.rb
but to no avail.Live app : http://runnable.com/VNkNeJ9wpNZJBEma/paperclip-mp4-problem
Click
Run
and navigate to the last post to see the MP4. Note that Runnable is very slow. If it sayssomething bad happened
in the terminal, try reloading the page until it disappears.