Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (61)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10914)

  • Revision de735929cf : Reduce bmi buffer length from 16 to 4 This commit removes the use of bmi_ in th

    27 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/encoder/vp9_encodeintra.c



    Reduce bmi buffer length from 16 to 4

    This commit removes the use of bmi_ in the first-pass encoding by
    forcing encode_intra4x4block_ to use DC_PRED, followed by DCT_DCT
    only, as John suggested. This makes the need for bmi buffer only
    up to 4 entries, instead of 16.

    Change-Id : I3410007dfae789ee46a09ae20c39d3ce3c7954aa

  • Is it possible to encode an audio stream with the exact length (to millisecond) ?

    27 avril 2019, par v010dya

    I am looking to create an output file with a length exactly 30 seconds in either mp3, aac, or vorbis codecs. I have used avconv (and also tried ffmpeg) with the following command :

    avconv  -i input_file_here -c:a aac -b:a 320k -t 30 out.mp4

    This produces the output, stating that it has encoded exactly 30 seconds, but then :

    $ avprobe out.mp4
    avprobe version v13_dev0-1648-gc4642788e, Copyright (c) 2007-2018 the Libav developers
     built on Apr 24 2019 15:49:35 with gcc 7 (Ubuntu 7.3.0-27ubuntu1~18.04)
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'out.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 512
       compatible_brands: isomiso2mp41
       encoder         : Lavf57.83.100
     Duration: 00:00:30.02, start: 0.023220, bitrate: 323 kb/s
       Stream #0:0(und): Audio: aac (LC) [mp4a / 0x6134706D]
         44100 Hz, stereo, fltp, 321 kb/s (default)
       Metadata:
         handler_name    : SoundHandler
    # avprobe output

    When i encode in mp3 it correctly displays that it does more than 30 seconds during the encoding. When i try vorbis it does slightly less than 30 seconds.

    Is it possible to achieve the length of 30 seconds to the millisecond using any tool (i prefer either avconv).

  • Ffmpeg used to slow down mp3. Some audio players get length wrong [closed]

    14 août 2023, par AlanFRCPath

    I have used ffmpeg to slow down an audio file using :

    


    ffmpeg -i input.mp3 -filter:a "atempo=0.8" -vn output.mp3

    


    It produces a 45'55" output from a 36'44" input as expected.

    


    In linux mplayer shows the output file as 45'55" as does ffprobe but XMMS shows it as double at 91'10". The audioplayer in my car which plays mp3 files on USB keys also misreads it length.

    


    Can anyone provide some insight into what is going on here ?