Recherche avancée

Médias (91)

Autres articles (29)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7065)

  • (ffmpeg) : Failed to read frame size : Could not seek to 1026

    24 mai 2021, par UserUNP

    I was trying to convert Midi files to Mp3 files using timidity and ffmpeg
using this command

    


    python -m timidity play.mid -Ow -o - | ffmpeg -i - -acodec libmp3lame -ab 64k play.mp3


    


    so I can use it in my Discord bot, but whenever I execute the command, it always returns this error that I couldn't understand

    


    [mp3 @ 0x56226d7e0440] Format mp3 detected only with low score of 1, misdetection possible!
[mp3 @ 0x56226d7e0440] Failed to read frame size: Could not seek to 1026.
play.mp3: Invalid argument


    


    If you have any idea to what this means or how can I fix it then please give me an Answer, thanks !

    


  • Seek issue of HEVC streams with ffplay

    1er juin 2015, par userDtrm

    I’m attempting to perform a seek operation in an MPEG-TS stream that contains a HEVC encoded bit stream. The HEVC stream is encoded using the following command ;

    ffmpeg -s:v 1920x1080 -i kimono.yuv -c:v libx265 -x265-params crf=23:fps=30:keyint=10:min-keyint=10 -c:a copy -f mpegts testhevc.ts

    The seek operation is attempted with ffplay as ;

    ffplay testhevc.ts -ss 5 -vf showinfo

    The information shown gives multiple initial errors with missing POCs, such as ;

    Could not find ref with POC 126

    However, everything works fine when the same operation is performed with H.264. The encoding with H.264/AVC is performed as ;

    ffmpeg -s:v 1920x1080 -i kimono.yuv -c:v libx265 -c:v libx264 -crf 23 -r 30 -keyint_min 10 -g 10 -c:a copy -f mpegts testh264.ts

    Is this an issue with the ffmpeg tools for HEVC or am I missing something in these commands ?.

    Thanks.

  • avformat/subtitles : Deduplicate subtitles' read_(packet|seek|close)

    8 juillet 2021, par Andreas Rheinhardt
    avformat/subtitles : Deduplicate subtitles' read_(packet|seek|close)
    

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

    • [DH] libavformat/assdec.c
    • [DH] libavformat/jacosubdec.c
    • [DH] libavformat/lrcdec.c
    • [DH] libavformat/mccdec.c
    • [DH] libavformat/mpl2dec.c
    • [DH] libavformat/mpsubdec.c
    • [DH] libavformat/pjsdec.c
    • [DH] libavformat/realtextdec.c
    • [DH] libavformat/samidec.c
    • [DH] libavformat/sccdec.c
    • [DH] libavformat/srtdec.c
    • [DH] libavformat/stldec.c
    • [DH] libavformat/subtitles.c
    • [DH] libavformat/subtitles.h
    • [DH] libavformat/subviewer1dec.c
    • [DH] libavformat/subviewerdec.c
    • [DH] libavformat/vplayerdec.c