Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (22)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (5459)

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