Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (106)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (5104)

  • Revision c8defcfdee : Update quantize SSSE3 SIMD to cover 32x32 transform case also. Encode time of b

    1er juillet 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/x86/vp9_quantize_ssse3.asm



    Update quantize SSSE3 SIMD to cover 32x32 transform case also.

    Encode time of bus (speed 0) 50 frames @ 1500kbps goes from 2min14.4 to
    2min10.1, i.e. a 2.3% overall speed increase.

    Change-Id : I3699580e74ec26c7d24e03681bc47ba25ee1ee87

  • FFmpeg, how to embed cover art (image) to .m4a

    14 novembre 2016, par decss

    Is there any way to embed cover art to m4a files ?

    This one works well for mp3 but doesn’t work for m4a

    ffmpeg -i tests/in.m4a -i cover.jpg -map 0:0 -map 1:0 -acodec copy \
     -id3v2_version 3 tests/out.m4a
  • ffmpeg transcoding errors with an embedded cover

    31 décembre 2012, par Val Noch

    Im trying to transcode mp3 files into wav format, so that they can be used in another script.
    The script requires the file to be 44.1Khz, so i add that to ffmpeg command.

    The problem comes when a file has an embedded cover image :

     Duration : 00:05:53.85, start : 0.000000, bitrate : 319 kb/s
        Stream #0:0 : Audio : mp3, 44100 Hz, stereo, s16p, 320 kb/s
        Stream #0:1 : Video : mjpeg, gray, 938x936 [SAR 300:300 DAR 469:468], 90k tbr, 90k tbn, 90k tbc
        Metadata :
          title : 
          comment : Cover (front)
        Stream #0:2 : Video : mjpeg, yuvj420p, 88x31 [SAR 96:96 DAR 88:31], 90k tbr, 90k tbn, 90k tbc
        Metadata :
          title : 
          comment : Cover (front)
    

    The ffmpeg command i use is :

    ffmpeg -loglevel warning -y -i :source -vn -ac 2 -ar 44100 -f wav :dest

    So when transcoding a file this throws warnings :

    [mp3 @ 0xa0bba60] Format mp3 detected only with low score of 24, misdetection possible!
    [mp3 @ 0xa0bba60] max_analyze_duration 5000000 reached at 5015510
    [mp3 @ 0xa0bba60] Estimating duration from bitrate, this may be inaccurate

    The resulting wav file has some problems (perhaps wrong header info ?), i think it reports to have more frames than are in the file so the follow-up script overshoots the end of data.

    I believe the problem is with extra streams (cover images) in the mp3 file, but i cant seem to tell ffmpeg to just deal with audio.

    The file i am using for the example is :
    07-Zimmer070-KOSMORAUM-_Junior85-For_reason_forgotten.mp3 (http://archive.org/details/ZIMMER070)

    And the ffmpeg is the latest from their git repo : git ://source.ffmpeg.org/ffmpeg.git

    Many thanks for any info in advance !