Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (100)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4169)

  • avformat/flacdec : Also set channels when setting channel_layout

    29 août 2021, par Andreas Rheinhardt
    avformat/flacdec : Also set channels when setting channel_layout
    

    This brings the FLAC demuxer in line with all the other demuxers.
    Furthermore, if it is not done and the FLAC decoder is disabled,
    the FLAC parser will overwrite the channel layout with the standard
    channel layout for that number of channels.

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

    • [DH] libavformat/flacdec.c
  • Evolution #2516 : Espace privé en RWD

    23 octobre 2014, par cedric -

    Il faut clairement passer en RWD, mais il reste des choses à corriger sur le layout qui n’est pas strictement propre partout. Je repousse a 3.2 du coup

  • Concatenating two AAC decreasing number of frames packets

    29 décembre 2019, par Ahmed Hawary

    I am trying to concatenate two m4a (aac) files using the FFmpeg with the following command :

    ffmpeg -f concat -i input.txt -codec copy output.m4a

    the first file number of frames using afinfo on macOS :

    File type ID:   m4af
    Data format:     1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    no channel layout.
    estimated duration: 8.473832 sec
    audio bytes: 68931
    audio packets: 367
    bit rate: 64710 bits per second
    packet size upper bound: 391
    maximum packet size: 391
    audio data file offset: 44
    not optimized
    audio 373696 valid frames + 2112 priming + 0 remainder = 375808
    format list:
    [ 0] format:      1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    Channel layout: Mono

    The second file metadata :

    File type ID:   m4af
    Num Tracks:     1
    Data format:     1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    no channel layout.
    estimated duration: 5.594558 sec
    audio bytes: 46077
    audio packets: 243
    bit rate: 65329 bits per second
    packet size upper bound: 340
    maximum packet size: 340
    audio data file offset: 44
    not optimized
    audio 246720 valid frames + 2112 priming + 0 remainder = 248832
    format list:
    [ 0] format:      1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    Channel layout: Mono

    the resulted audio files metadate :

    File type ID:   m4af
    Num Tracks:     1
    Data format:     1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    no channel layout.
    estimated duration: 14.070998 sec
    audio bytes: 122792
    audio packets: 607
    bit rate: 69696 bits per second
    packet size upper bound: 293
    maximum packet size: 293
    audio data file offset: 40
    not optimized
    audio 620531 valid frames + 1024 priming + 13 remainder = 621568
    format list:
    [ 0] format:      1 ch,  44100 Hz, 'aac ' (0x00000000) 0 bits/channel, 0 bytes/packet, 1024 frames/packet, 0 bytes/frame
    Channel layout: Mono

    The problem is that the total number of frames should be 367+293 = 610 and the resulted number of frames is 607. And the duration is 14.070998 sec instead of 14.06839 sec

    Any ideas if I am doing anything wrong here ? I need to precisely concatenate the two files without any loss or gain in the input frames.