Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (78)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9404)

  • bitstream : fix a crash in case of oom

    9 juillet 2013, par Piotr Bandurski
    bitstream : fix a crash in case of oom
    

    fixes ticket #2766

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/bitstream.c
  • Revision 527fc5caf6 : Fix loopfilter bug In the rare case were 4x4 interior filtering was called for

    9 juillet 2013, par John Koleszar

    Changed Paths :
     Modify /test/test-data.sha1


     Modify /test/test.mk


     Modify /test/test_vector_test.cc


     Modify /vp9/common/vp9_loopfilter.c



    Fix loopfilter bug

    In the rare case were 4x4 interior filtering was called for but no
    8x8 or larger filtering takes place, the previous code was skipping
    the filtering. This patch fixes the issue by including the interior
    mask in the overall mask for the filter application loops.

    Change-Id : I4a0b65056c64f97478827c2ff41e0914fc7779d0

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