Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La 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.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (6514)

  • 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;