
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (10157)
-
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
-
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 ?
-
Converting a .flac or .mp3 file into an .mp4 to be DASH compatible
13 juillet 2022, par TotomIncI would like to know if it's possible to convert a .flac or a .mp3 file into a .mp4 file (without image or video) in order to be DASH compatible.


The goal is to make my audio files (.flac or .mp3) segmented and compatible with the DASH spec so I can stream audio segments with a web-server.


I already tried to use GPAC MP4Box and ffmpeg but both doesn't seem to support really well audio-only.


I would like some guidance if someone already has experience with this.