Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (60)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (11963)

  • Create one mpeg-dash segment

    19 février 2018, par Yuriy Pryyma

    I 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_info

    1) 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 Sharma

    I’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 diS

    Is 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 ?