Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7103)

  • avcodec/videotoolboxenc : Allow full range 10bit pixel format input

    21 septembre 2020, par Harry Mallon
    avcodec/videotoolboxenc : Allow full range 10bit pixel format input
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>
    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • libavcodec/proresdec2 : Setup qmat_chroma according to RDD36

    19 août 2020, par Harry Mallon
    libavcodec/proresdec2 : Setup qmat_chroma according to RDD36
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/proresdec2.c
  • FFMPEG streams from Docker container application are not playing on other computers

    25 janvier, par tipitoe

    I'm building a docker container app using dotnet core that captures and plays audio streams using ffmpeg.

    &#xA;

    Since some of the URLs cannot be played directly in a web browser, audio needs to be processed by ffmpeg first. The ffmpeg output is a local url http://127.0.0.1:8080 that is sent back to a browser in an Ajax call.

    &#xA;

    The audio plays perfectly in Visual Studio during development. I understand, since URL refers to localhost, there is no issue playing the audio. Unfortunately, with application being installed as docker container, the audio is being blocked. Initially, my guess was it was CORS that was blocking the stream. Also I considered the possibility that I have to use LAN IP address of the machine hosting docker container. This did not solve the problem&#xA;either.

    &#xA;

    Here is my code so far in Startup.cs

    &#xA;

      services.AddCors(options => options.AddPolicy("AllowAll",&#xA;  builder => builder.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()));&#xA;&#xA;  app.UseCors("AllowAll");&#xA;  app.UseRouting();&#xA;

    &#xA;

    Here is an Ajax call

    &#xA;

      $.ajax({&#xA;  type: &#x27;POST&#x27;,&#xA;  url: &#x27;/live?handler=PlayStream&#x27;,&#xA;  beforeSend: function (xhr) {&#xA;      xhr.setRequestHeader(&#x27;XSRF-TOKEN&#x27;,&#xA;          $(&#x27;input:hidden[name="__RequestVerificationToken"]&#x27;).val());&#xA;  },&#xA;  dataType: &#x27;json&#x27;,&#xA;  data: { &#x27;streamId&#x27;: streamId },&#xA;  success: function (data) {&#xA;&#xA;      var json = JSON.parse(data);&#xA;&#xA;      source = new Audio(json.InputUri);&#xA;      source.play();&#xA;              &#xA;&#xA;&#xA;  },&#xA;  failure: function (response) {&#xA;&#xA;      alert(response.responseText);&#xA;  },&#xA;  error: function (response) {&#xA;&#xA;      alert(response.responseText);&#xA;  }&#xA;

    &#xA;

    }) ;

    &#xA;

    I would appreciate any suggestions how to solve this problem. Thanks

    &#xA;