Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

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

  • 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

Sur d’autres sites (5855)

  • avcodec/mpeg12enc : Perform size/level/profile checks earlier

    6 avril 2021, par Andreas Rheinhardt
    avcodec/mpeg12enc : Perform size/level/profile checks earlier
    

    This has the advantage that one does not waste some allocations
    if one errors out because of these checks.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12enc.c
  • lossless video to h.265 - [error] : main10 profile not compatible with i422 input chroma subsampling

    24 février 2021, par spierce7

    I have a lossless .mov video and I'm trying to encode using h.265 for firetv and some other android tv devices. The spec that they support is :

    &#xA;

    Based on their native H.265 support, I'm trying to export a Main 10 Profile with level 4.1.

    &#xA;

    The command I'm running is :

    &#xA;

    ffmpeg -i 001_lossless.mov -c:v libx265 -preset slow -profile:v main10 -level:v 4.1 -c:a aac -b:a 128k output.mp4&#xA;

    &#xA;

    Which yields the following error :

    &#xA;

    x265 [error]: main10 profile not compatible with i422 input chroma subsampling.&#xA;

    &#xA;

    What is the best way to work around this ? I can request the lossless video in different formats also, but I'm not exactly sure what to ask for.

    &#xA;

  • audio/mp4 ; codecs="mp4a.40.2" not playing in Chrome and Firefox

    19 octobre 2020, par Stefan Falk

    It seems I want to convert audios, which I want to stream on my website, to audio/mp4; codecs="mp4a.40.2".

    &#xA;

    Using ffmpeg-cli-wrapper, I am converting my uploaded audio files with this command here :

    &#xA;

    ffmpeg -i /tmp/input.any -acodec aac -b:a 256000 /tmp/output.aac&#xA;

    &#xA;

    On the client I am creating a SourceBuffer like this :

    &#xA;

    this.sourceBuffer = this.mediaSource.addSourceBuffer(&#x27;audio/mp4; codecs="mp4a.40.2"&#x27;);&#xA;

    &#xA;

    The errors are :

    &#xA;

    Chrome :

    &#xA;

    NotSupportedError: Failed to load because no supported source was found.&#xA;

    &#xA;

    Firefox :

    &#xA;

    NotSupportedError: The media resource indicated by the src attribute or assigned media provider object was not suitable.&#xA;

    &#xA;

    Here comes the fun part :

    &#xA;

    If I create the SourceBuffer using audio/aac as mime-type :

    &#xA;

    this.sourceBuffer = this.mediaSource.addSourceBuffer(&#x27;audio/aac&#x27;);&#xA;

    &#xA;

    the audio gets played correctly on Chrome but Firefox says :

    &#xA;

    MediaSource.addSourceBuffer: Type not supported in MediaSource&#xA;

    &#xA;


    &#xA;

    Update

    &#xA;

    After changing the command to

    &#xA;

    ffmpeg -i /tmp/input.any -acodec aac -b:a 256000 /tmp/output.mp4&#xA;                                                             ^^^ &#xA;

    &#xA;

    Chrome/Firefox do not give an error when using audio/mp4; codecs="mp4a.40.2", but the audio is not being played.

    &#xA;


    &#xA;

    See

    &#xA;

    &#xA;