
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (31)
-
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 (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4513)
-
Create one mpeg-dash segment
19 février 2018, par Yuriy PryymaI have video encoded in mpeg-dash(*.mpd, init segments, video segments)
Task is to replace one of video segments with segment generated by me. And so video is still can be played.I read properties of one segment(combining init segment and video segment) using
avformat_open_input
avformat_find_stream_info1) I have tried to use dash muxer to generate new segment.
avformat_alloc_output_context2(&avFormatContext, NULL, "dash", filename)
But the problem is it creates mpd manifest, and other segments. So how to force it to create one segment ?
2) When I parsed segment I noticed that it had format "QuickTime / MOV".
avformat_alloc_output_context2(&avFormatContext, NULL, "mov", filename);
So my another idea was to use "mov" encoder. And set properties same as in initial segment(start time, duration, resolution).
But here the question is how to remove init header ? Because I already have init segment.Are there any other approaches to generate one mpeg-dash segment and how to solve my problems ?
-
MP4Box Dash mpd not working
7 décembre 2017, par Durlabh SharmaI’m trying to make a DASH client with Exoplayer as client on Android side. I am able to create individual Dash streams for audio or video. But I am unable to create a stream that includes both audio and video in single mpd file.
For video, command used is :
MP4Box -dash 4000 -frag 4000 -rap -segment-name segment_ ../video_enc.mp4#video
For audio, command is :
MP4Box -dash 4000 -frag 4000 -rap -segment-name segment_ ../video_enc.mp4#audio
They both work perfectly fine. But when I go to create a single mpd, it creates mpd but it just doesn’t work. Even after creating all segments and fragments, it still fails to playCommand used is :
MP4Box -dash 4000 -frag 4000 -rap -bs-switching no -profile dashavc264:live -segment-name segment_ ../video_enc.mp4#audio ../video_enc.mp4#video
-
Is it possible to encrypt mpeg-dash clear content in ffmpeg ?
22 novembre 2017, par diSIs it possible to encrypt mpeg-dash clear content in ffmpeg ? or do we need to additional code to handle the encryption ?
From ffmpeg dashenc.c code it appears that dash code does not encrypt the content.
Can we reuse the mp4 muxer for encrypting and dash for segmenting ?