
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (111)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (9073)
-
How to create a live stream in dash format from mp4 file or m3u8 list ? (ffmpeg)
30 juin 2017, par jorge.luengoI have been trying different ways of running dash live streams from mp4 or m3u8 but none of them worked fined. I want to use ffmpeg because of my server conditions.
This command has been the one that did something but it didn’t work as I expected :ffmpeg-3.3.2-64bit-static/ffmpeg -i reencoded24eng.mp4 -vf yadif=0 -r 30 -vcodec libx264 -keyint_min 60 -g 60 -b:v 1000k -ac 2 -strict 2 -acodec aac -ab 64k -map 0:v -map 0:a -f dash -min_seg_duration 2000 -use_template 1 -use_timeline 1 -init_seg_name init-\$RepresentationID\$.mp4 -dash 1 -media_seg_name test-\$RepresentationID\$-\$Number\$.mp4 test.mpd
The error that the dash-if conformance tool provides is the following one :
Start XLink resolving
XLink resolving successful
Start MPD validation
MPD validation successful - DASH is valid !
Start Schematron validation
location="/[local-name()=’MPD’ and namespace-uri()=’urn:mpeg:dash:schema:mpd:2011’]/[local-name()=’Period’ and >namespace-uri()=’urn:mpeg:dash:schema:mpd:2011’]">
If the MPD is dynamic the Period element shall have an id.location="/[local-name()=’MPD’ and namespace-uri()=’urn:mpeg:dash:schema:mpd:2011’]/[local-name()=’Period’ and >namespace-uri()=’urn:mpeg:dash:schema:mpd:2011’]/*local[1]">
Common attributes for AdaptationSet and Representation shall either be in >one of the elements but not in both.Schematron validation not successful - DASH is not valid !
BUILD SUCCESSFUL
Total time : 5 secondsCould anyone help me with this ?
-
How to live-stream 360 video from a PC to VR headset/goggle/HMD ?
13 juillet 2017, par db7638I have some code that captures footage from cameras and outputs a stitched 360 video. I can output stitched videos as
MP4
files,RGBA
files, orRGBA OpenGL
textures.I need to somehow get my code to live-stream the stitched video to a VR headset (preferably a tethered VR headset like Oculus Rift CV1 as opposed to a headset containing a cellphone).
I need to stream the stitched 360 video from the PC to the headset without an internet connection, and I would prefer having a wired connection.
Given these conditions, what are my options ? Can I use something like
ffmpeg
orGstreamer
to send the video stream over USB (or another wired connection) to the VR headset ?I have looked into the documentation for both
ffmpeg
andGstreamer
, while it seems plausible, I don’t know a clear way to do it yet. -
Anomalie #3535 : liste des rédacteurs connectés
16 août 2017, par Julien -Sur un SPIP 3.2b, (migré depuis un 2.1 > 3.1 > 3.2b), j’ai en effet 4 types de valeur pour
imessage
: "oui", "non", vide, NULL.
(Et une condition SQLimessage != 'non'
retourne le vide mais pas leNULL
).Au niveau MySQL, la colonne
imessage
n’a pas deNOT NULL
.
Au niveau du code SPIP, on trouve :
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/maj/v012.php#L35 : création initial enNOT NULL
Il semble que sur une installation neuve :
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/base/objets.php#L225 : le "field" est absent (bien que référencé dans "champs_editables" L223)C’est l’organiseur qui semble gérer la création de
imessage
etmessagerie
:
https://core.spip.net/projects/organiseur/repository/entry/base/organiseur.php#L27
=> Il crée ces champs sans préciser deNOT NULL
contrairement àv012.php
A noter que sur une base en SPIP 2.1, je vois que j’ai tout de même "OUI" à la propriété
NOT NULL
!!Au niveau du code SPIP, il semble que les conditions portent toujours sur
!= 'non'
.
Ne faudrait-il pas plutôt corriger la définition de la colonne en mettant unNOT NULL DEFAULT ''
?