Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (30)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6502)

  • avcodec/vorbisenc : Mark encoder as init-threadsafe

    7 mai 2021, par Andreas Rheinhardt
    avcodec/vorbisenc : Mark encoder as init-threadsafe
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vorbisenc.c
  • avcodec/webp : Mark decoder as init-threadsafe

    7 mai 2021, par Andreas Rheinhardt
    avcodec/webp : Mark decoder as init-threadsafe
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/webp.c
  • Invalid Mark Error while trying to read mp3 files javaZoom

    1er avril 2019, par Waddle D.

    I’m trying to load an mp3 that I’ve modified with ffmpeg by doing
    "ffmpeg -i inputfile.mp3 -y -ar 48000 converted.mp3
    , but when I try to read the file using javaZoom, I get this error

    java.io.IOException: Resetting to invalid mark
       at java.base/java.io.BufferedInputStream.reset(BufferedInputStream.java:454)
       at org.tritonus.share.sampled.file.TAudioFileReader.getAudioInputStream(TAudioFileReader.java:330)
       at javazoom.spi.mpeg.sampled.file.MpegAudioFileReader.getAudioInputStream(Unknown Source)
       at javazoom.spi.mpeg.sampled.file.MpegAudioFileReader.getAudioInputStream(Unknown Source)
       at java.desktop/javax.sound.sampled.AudioSystem.getAudioInputStream(AudioSystem.java:1060)
       at VoiceBot.queueAudio(VoiceBot.java:123)
       at VoiceBot.onMessageReceived(VoiceBot.java:104)

    This problem did not occur with normal unmodified files and didn’t even occur with some of the modified files. And so I believe it may have to with the file size. Because I’m chaning the sampling rates of the files from 44.1 kHz to 48 kHz, which is expanding the file size.

    This problem had occurred before as seen in the previous thread : Error while playing some MP3s using JavaZOOM BasicPlayer classes

    However, the solution to the problem was to mp3spi1.9.5. The problem is, that’s the version of it I’m using and I still have the problem. I am also using jl1.0.1 and tritonous0.3.6.

    Is this a problem with JLayer ? Should I move to a different mp3 reading library, or is this an easily fixable problem.

    EDIT : So I’ve managed to work around this by lowering the bitrate of the converted mp3 files. I would very much like to not have to do this and actually have full quality. But hopefully this is helpful to any one who is trying to help.