Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (41)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7678)

  • FFmpeg conversion to FLAC including Art

    29 novembre 2017, par JeremyLaurenson

    I am using FFMpeg to convert audio formats and specifically to FLAC. I am unable to preserve album art in the metadata for some reason.

    Current command format I am using is :

    ffmpeg -I source.alac -c:v copy -f Flac destination.flac

    Am I missing something, or does FFMpeg not actually support this ? (I know I cane tract artwork and then use metallic if I need to but thats a lot more complex than I’d like)

  • flac : use meaningful return values

    10 juillet 2013, par Luca Barbato
    flac : use meaningful return values
    
    • [DBH] libavcodec/flac.c
    • [DBH] libavcodec/flacdec.c
  • FLAC seeking with ffmpeg

    21 juillet 2013, par Andreas

    I found out that seeking FLAC files using av_seek_frame() doesn't really work with ffmpeg. Decoding FLAC to raw PCM works fine but as soon as I have called av_seek_frame(), the next call to av_read_frame() will return -1, i.e. end of file.

    I peeked into the source code and found out the following cause : seeking in FLAC is implemented in the av_seek_frame_generic() function inside libavformat/utils.c. What this function basically does is calling av_read_frame() in a loop and checking the packet timestamps against the desired seek position.

    The reason why it doesn't work with FLAC is that the FLAC packets don't contain any timestamps because the FLAC decoder uses some generic reader that always pulls packets of a hard-coded size of 1024 bytes from the stream.

    I'm not using the latest version of ffpmeg but an older one but as FLAC playback works just fine I don't want to switch to the latest one because this would mean significant work for me because I've adapted this older version of ffmpeg to my specific needs. That's why I'd like to ask the question if anybody has an idea how I could fix FLAC seeking in this older version of ffmpeg (to be specific, it is version 0.6 from 2010).

    Thanks !