Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (40)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Revision 37442 : On se base sur la valeur de l’id_orig pour vérifier si l’on doit mettre ...

    20 avril 2010, par kent1@… — Log

    On se base sur la valeur de l’id_orig pour vérifier si l’on doit mettre dans la file d’encodage et non pas sur le nom de fichier
    Incrément mineur de version

  • avcodec/webp : Use LE VLC table for LE bitstream reader

    12 octobre 2020, par Andreas Rheinhardt
    avcodec/webp : Use LE VLC table for LE bitstream reader
    

    The WebP format uses Huffman tables and the decoder therefore uses
    VLC tables. Given that WebP is a LE format, a LE bitreader is used ;
    yet the VLC table is not created for a LE reader (the process used to
    create the tables puts the last bit to be read in the lowest bit) and
    therefore custom code for reading the VLCs that reverses the bits
    read is used instead of get_vlc2(). This commit changes this to use
    a table designed for LE bitreader which allows to use get_vlc2() directly.
    The necessary reversing of the codes is delegated to
    ff_init_vlc_sparse() (and is therefore only done during init and not
    when actually reading the VLCs).

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/webp.c
  • FFMPEG Chapter Metadata added to a song file is sometimes off by 1 second

    6 février 2021, par Elthfa

    I attempted to add chapter metadata to a .opus file, but afterward, the file metadata showed timestamps different than the ones I attempted to add.&#xA;It seems to be adding an extra second to the timestamps under certain conditions.&#xA;I'm not sure if this is a bug, or if maybe I am just using the command wrong.

    &#xA;

    Here are the commands I performed :

    &#xA;

    First I removed all existing metadata from the file. I did this using a command I found on stack overflow :

    &#xA;

    ffmpeg -i test_song.opus -c copy -map_metadata -1 -fflags &#x2B;bitexact -flags:a &#x2B;bitexact no_metadata.opus&#xA;

    &#xA;

    Then I added the new metadata from an external file I had written :

    &#xA;

    ffmpeg -i no_metadata.opus -f ffmetadata -i metadata.txt -c copy -map_metadata 1 out.opus&#xA;

    &#xA;

    The file 'metadata.txt' looks like :

    &#xA;

    ;FFMETADATA1&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=0&#xA;END=400&#xA;title=400 ms&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=400&#xA;END=500&#xA;title=100 ms&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=500&#xA;END=2000s&#xA;title=1500 ms&#xA;[CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=2000&#xA;END=97000&#xA;title=The Rest&#xA;

    &#xA;

    When I print out the basic data from the file, not all the timestamps shown match the ones I had in the metadata file.

    &#xA;

    > ffmpeg -i out.opus&#xA;...&#xA;Input #0, ogg, from &#x27;out.opus&#x27;:&#xA;  Duration: 00:01:37.00, start: 0.000000, bitrate: 147 kb/s&#xA;&#xA;    Chapter #0:0: start 0.000000, end 0.400000&#xA;    Metadata:&#xA;      title           : 400 ms&#xA;&#xA;    Chapter #0:1: start 0.400000, end 1.500000&#xA;    Metadata:&#xA;      title           : 100 ms&#xA;    &#xA;    Chapter #0:2: start 1.500000, end 2.000000&#xA;    Metadata:&#xA;      title           : 1500 ms&#xA;    &#xA;    Chapter #0:3: start 2.000000, end 97.000000&#xA;    Metadata:&#xA;      title           : The Rest&#xA;...&#xA;

    &#xA;

    You can see the issues for chapters 0:1 and 0:2, which show a start and end time of 1.5 seconds respectively, when it should be 0.5 seconds for each.&#xA;I tried several combinations for this, and it seems that if the digit in the hundreds of milliseconds place is between 5 and 9 inclusive, it adds and extra second to the timestamp it saves in the metadata.

    &#xA;

    Is this due to me using the command wrong ? Or formatting the metadata file wrong ? Or is there an issue in the code with rounding timestamps ?

    &#xA;

    Thanks !

    &#xA;