
Recherche avancée
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11469)
-
avcodec/g723_1dec : Fix LCG type
14 mai 2017, par Michael Niedermayeravcodec/g723_1dec : Fix LCG type
Fixes : 1567/clusterfuzz-testcase-minimized-5693653555085312
Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Unable to receive RTP payload type 96 without an SDP file describing it
13 décembre 2017, par BanaSongHow can I use SDP files in iOS FFmpeg ? I’ve tried this :
char *url = "rtp://127.0.0.1:1234";
AVFormatContext *oc = NULL;
avformat_open_input(&oc, url, NULL , NULL);But I get the following error :
[rtp @ 028568e0] Unable to receive RTP payload type 96 without an SDP file
describing it. -
How do I specify the HEVC codec in the HTML5 video source type attribute ?
20 avril 2023, par nfrasserI'd like to load and play a smaller HEVC-encoded video on web browsers with support for it.



I'm using this code on Safari 11 (macOS 10.13), which has support for the HEVC format.



<video muted="muted" playsinline="playsinline" autoplay="autoplay">
 <source src="clip.webm" type="video/webm; codecs=vp9">
 <source src="clip-hevc.mp4" type="video/mp4; codecs=hevc">
 <source src="clip.mp4" type="video/mp4; codecs=avc1">
 <p>Video not supported</p>
</source></source></source></video>




In Web Inspector > Network Panel, I see that Safari loads both
clip.mp4
andclip-hevc.mp4
. If I inspect the video element, I see thatclip.mp4
is playing, notclip-hevc.mp4
. I see the same thing on iOS 11.


When I call
HTMLMediaElement.canPlayType()
on the types I specified, I get


- 

maybe
onvideo/mp4; codecs=hevc
probably
onvideo/mp4; codecs=avc1
- Nothing on variants of the HEVC codec I've seen (e.g.,
hvc1
,hev1
)









Something else I noticed : When I remove the
clip.mp4
option,clip-hevc.mp4
downloads and plays just fine !


How can I make sure that only the best supported MP4 variant downloads and plays in the browser ?