
Recherche avancée
Autres articles (69)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (8106)
-
hls : skip to next segment if the current is unavailable
16 avril 2015, par wm4hls : skip to next segment if the current is unavailable
Apparently, some live streams can delete segments too early, maybe
because the client is too far behind. In this case, it’s better to skip
the segment, instead of returning EOF. (Yes, the HLS demuxer actually
returns AVERROR_EOF if opening the segment returns a 404 HTTP error.)Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Get mime type for MediaSource.isTypeSupported
11 mars 2024, par GuigHow do I get the Mime type I need to pass to
MediaSource.isTypeSupported
with ffprobe/ffmpeg ?


For instance, on my computer, that returns
true
:


MediaSource.isTypeSupported('video/mp4; codecs="avc1.64000d,mp4a.40.2"')




while that doesn't



MediaSource.isTypeSupported('video/mp4')




I'm not sure how to get what would correspond to the
avc1.64000d,mp4a.40.2
part for a given video. Here is a larger list of what this part may look like.


ffprobe -show_streams -i video.mp4
returns a number of interesting informations, including


codec_type=video
codec_time_base=1/40
codec_tag_string=avc1
codec_tag=0x31637661 




and



codec_type=audio
codec_time_base=1/48000
codec_tag_string=mp4a
codec_tag=0x6134706d




I'm not sure I should go with
'video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"'
since this returnsfalse
and I don't know if it's because it's not the excepted argument or because the video is indeed not supported.

-
Get mime type for MediaSource.isTypeSupported
6 mars 2016, par GuigHow do I get the Mime type I need to pass to
MediaSource.isTypeSupported
with ffprobe/ffmpeg ?For instance, on my computer, that returns
true
:MediaSource.isTypeSupported('video/mp4; codecs="avc1.64000d,mp4a.40.2"')
while that doesn’t
MediaSource.isTypeSupported('video/mp4')
I’m not sure how to get what would correspond to the
avc1.64000d,mp4a.40.2
part for a given video. Here is a larger list of what this part may look like.ffprobe -show_streams -i video.mp4
returns a number of interesting informations, includingcodec_type=video
codec_time_base=1/40
codec_tag_string=avc1
codec_tag=0x31637661and
codec_type=audio
codec_time_base=1/48000
codec_tag_string=mp4a
codec_tag=0x6134706dI’m not sure I should go with
'video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"'
since this returnsfalse
and I don’t know if it’s because it’s not the excepted argument or because the video is indeed not supported.