Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (28)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6438)

  • gdb not stopping at even trivial breakpoints

    18 novembre 2015, par baruch

    I am trying to debug ffplay (a debug build) compiled using mingw-w64 on msys2 on Windows 7 64bit. I tried setting breakpoints using gdb, and they seem to be set fine, but the program does not stop. So i tried issuing start, and again it didn’t stop. I tried manually setting a breakpoint at main, but it still didn’t stop. I verified that main is found, and it is. Here is a portion of the session. Any explanation what might cause this ?

    (gdb) start
    Temporary breakpoint 1 at 0x140013f7c: file C:/Users/bubaruch/Documents/projects/ffmpeg/ffmpeg/ffplay.c, line 3756.
    Starting program: C:\Users\bubaruch\Documents\projects\ffmpeg\b2\ffplay_g.exe
    [New Thread 7752.0x275c]
    ffplay version 2.8.git Copyright (c) 2003-2015 the FFmpeg developers
     built with gcc 5.2.0 (Rev4, Built by MSYS2 project)
     configuration: --disable-doc --disable-optimizations
     libavutil      55.  5.100 / 55.  5.100
     libavcodec     57. 15.100 / 57. 15.100
     libavformat    57. 14.100 / 57. 14.100
     libavdevice    57.  0.100 / 57.  0.100
     libavfilter     6. 15.100 /  6. 15.100
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
    Simple media player
    usage: ffplay [options] input_file

    An input file must be specified
    Use -h to get full help or, even better, run 'man ffplay'
    [Inferior 1 (process 7752) exited with code 01]

    (gdb) l main
    3748       return 1;
    3749    }
    3750
    3751    /* Called from the main */
    3752    int main(int argc, char **argv)
    3753    {
    3754        int flags;
    3755        VideoState *is;
    3756        char dummy_videodriver[] = "SDL_VIDEODRIVER=dummy";
    3757

    (gdb) b main
    Breakpoint 2 at 0x140013f7c: file C:/Users/bubaruch/Documents/projects/ffmpeg/ffmpeg/ffplay.c, line 3756.

    (gdb) r
    Starting program: C:\Users\bubaruch\Documents\projects\ffmpeg\b2\ffplay_g.exe
    [New Thread 15388.0x3278]
    ffplay version 2.8.git Copyright (c) 2003-2015 the FFmpeg developers
     built with gcc 5.2.0 (Rev4, Built by MSYS2 project)
     configuration: --disable-doc --disable-optimizations
     libavutil      55.  5.100 / 55.  5.100
     libavcodec     57. 15.100 / 57. 15.100
     libavformat    57. 14.100 / 57. 14.100
     libavdevice    57.  0.100 / 57.  0.100
     libavfilter     6. 15.100 /  6. 15.100
     libswscale      4.  0.100 /  4.  0.100
     libswresample   2.  0.101 /  2.  0.101
    Simple media player
    usage: ffplay [options] input_file

    An input file must be specified
    Use -h to get full help or, even better, run 'man ffplay'
    [Inferior 1 (process 15388) exited with code 01]
  • avcodec/x86/mpegvideoenc : remove av_assert2() for variable alignment

    22 août 2024, par Ramiro Polla
    avcodec/x86/mpegvideoenc : remove av_assert2() for variable alignment
    

    It's safe to assume that LOCAL_ALIGNED_16 does indeed align. Otherwise
    we would have many more problems...

    This assert was added in f8188626 all the way back in 2003.

    • [DH] libavcodec/x86/mpegvideoenc_template.c
  • fftools/ffmpeg : Remove the micor like "#if 1"

    9 novembre 2018, par Jun Zhao
    fftools/ffmpeg : Remove the micor like "#if 1"
    

    They are come from 2003 and delete them.

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] fftools/ffmpeg.c