
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (63)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP 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 (...) -
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 (8881)
-
SWAY at RFWS using Coviu
17 juin, par silviaA SWAY session by Joanne of Royal Far West School. http://sway.org.au/ via https://coviu.com/ SWAY is an oral language and literacy program based on Aboriginal knowledge, culture and stories. It has been developed by Educators, Aboriginal Education Officers and Speech Pathologists at the Royal Far West School in Manly, NSW.
Category : Array
Uploaded by : Silvia Pfeiffer
Hosted : youtubeThe post SWAY at RFWS using Coviu first appeared on ginger’s thoughts.
-
ffmpeg pipe livestream to ffplay
4 mars 2021, par DobbelinaI wonder if it is possible to pipe an internet livestream from ffmpeg to ffplay ?



Examples to illustrate :



Livestream to test.mp4 works



ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4"




Recorded video to test.mp4 and pipe to ffplay works



ffmpeg -i "https://Some recorded video" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs -




Livestream to test.mp4 and pipe to ffplay don't work



ffmpeg -i "https://Some livestream" -c copy "C:\ffmpeg\test.mp4" -f matroska - | ffplay -fs -




I get this error :





pipe: : Invalid data found when processing input





How do i get "Livestream to test.mp4 and pipe to ffplay" to work so i can watch the livestream
while it is recording ?



(If it's possible i mean)


-
Multiple subtitle tracks on iOS with AVPlayer [closed]
23 novembre 2024, par Martin PaucotI have a bunch of videos that are hosted on Vimeo. To allow users watching them on the mobile apps (Android & iOS) we use the m3u8 format given directly by Vimeo.


It works great with expo-video as all our videos have transcript for different languages.


I would like to allow the users to download videos so they can be watched offline. To achieve that I use ffmpeg to convert the
.mp4
to.mkv
and combine the.srt
files.

This solution works great on android, users can download videos and watch them offline with the ability to select subtitles. Unfortunately it seems that the AVPlayer on iOS (used by expo-video) does not support MKV. I tried different formats
mov
,mp4 containers
,m4v
where subtitles show properly on VLC after conversion but not on the iOS player. (either no subtitles at all, or only the first track).

Is there a file format supported by AVPlayer that allows multiple subtitle tracks ?