Recherche avancée

Médias (91)

Autres articles (65)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (4773)

  • avformat/mp3dec : avoid early EOF with concatenated gapless mp3s

    21 septembre 2014, par wm4
    avformat/mp3dec : avoid early EOF with concatenated gapless mp3s
    

    Consider a file created with something like :

    cat file1.mp3 file2.mp3 > result.mp3

    Then if file2.mp3 has gapless information, result.mp3 would stop playing
    something in the middle. This happens because the gapless info directs
    the decoder to discard all samples after a certain position. To make
    matters worse, the gapless info of file2.mp3 will be used when playing
    the file1.mp3 part, because the gapless info is located at the end of
    the file.

    While handling concatenated gapless files correctly would be insane and
    a lot of effort (especially without scanning the whole file on opening),
    it’s easy to prevent at least early EOF. Playback will happen to work,
    even if it’s slightly broken.

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

    • [DH] libavformat/avformat.h
    • [DH] libavformat/mp3dec.c
    • [DH] libavformat/utils.c
  • How to read errors when compiling from source code

    28 décembre 2022, par slyfox1186

    Goal :

    &#xA;

    Compile multiple libraries from source code to ultimately install a fully compiled version of FFmpeg with desirable libraries attached.

    &#xA;

    Problem :

    &#xA;

    During the compilation, all libraries (seemingly) are successful until liblv2 is reached.

    &#xA;

    Error output via terminal :

    &#xA;

    building lv2 - version 1.18.10&#xA;=======================&#xA;Downloading https://lv2plug.in/spec/lv2-1.18.10.tar.xz as lv2-1.18.10.tar.bz2&#xA;... Done&#xA;Extracted lv2-1.18.10.tar.bz2&#xA;$ python3 ./waf configure --prefix=/home/jman/tmp/ffmpeg/ffmpeg-build/workspace --lv2-user&#xA;python3: can&#x27;t open file &#x27;/home/jman/tmp/ffmpeg/ffmpeg-build/packages/lv2-1.18.10/./waf&#x27;: [Errno 2] No such file or directory&#xA;&#xA;Failed to Execute python3 ./waf configure --prefix=/home/jman/tmp/ffmpeg/ffmpeg-build/workspace --lv2-user&#xA;

    &#xA;

    Where I need guidance :

    &#xA;

    python3: can&#x27;t open file &#x27;/home/jman/tmp/ffmpeg/ffmpeg-build/packages/lv2-1.18.10/./waf&#x27;: [Errno 2] No such file or directory&#xA;

    &#xA;

    My question :

    &#xA;

    What does this part mean ?

    &#xA;

    lv2-1.18.10/./waf&#x27;&#xA;&#xA;specifically the part /./&#xA;

    &#xA;

    My best guess so far is it :

    &#xA;

      &#xA;
    1. obviously is looking for a directory it can't find (perhaps because it truly doesn't exist)
    2. &#xA;

    3. The missing &#x27;waf&#x27; directory should be located inside either the "${PACKAGES}" or "${WORKSPACE}" directory.
    4. &#xA;

    &#xA;

    The ${PACKAGES}" path in this script should = /home/jman/tmp/ffmpeg/ffmpeg-build/packages

    &#xA;

    The ${WORKSPACE}" path in this script should = /home/jman/tmp/ffmpeg/ffmpeg-build/workspace

    &#xA;

    The full build script :

    &#xA;

    https://github.com/slyfox1186/ffmpeg-build-script/blob/master/scripts/build-ffmpeg

    &#xA;

    I tried my best to make this worth sometimes time without giving too much info... sorry if I don't meet the expectations of this forum.

    &#xA;

    Am I even close ?

    &#xA;

  • pthread_frame : do not run hwaccel decoding asynchronously unless it’s safe

    24 novembre 2016, par Anton Khirnov
    pthread_frame : do not run hwaccel decoding asynchronously unless it’s safe
    

    Certain hardware decoding APIs are not guaranteed to be thread-safe, so
    having the user access decoded hardware surfaces while the decoder is
    running in another thread can cause failures (this is mainly known to
    happen with DXVA2).

    For such hwaccels, only allow the decoding thread to run while the user
    is inside a lavc decode call (avcodec_send_packet/receive_frame).

    Merges Libav commit d4a91e65.

    Signed-off-by : wm4 <nfxjfg@googlemail.com>
    Tested-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/hwaccel.h
    • [DH] libavcodec/pthread_frame.c
    • [DH] libavcodec/vaapi_h264.c
    • [DH] libavcodec/vaapi_mpeg2.c
    • [DH] libavcodec/vaapi_mpeg4.c
    • [DH] libavcodec/vaapi_vc1.c
    • [DH] libavcodec/vdpau_h264.c
    • [DH] libavcodec/vdpau_hevc.c
    • [DH] libavcodec/vdpau_mpeg12.c
    • [DH] libavcodec/vdpau_mpeg4.c
    • [DH] libavcodec/vdpau_vc1.c