Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (78)

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (7530)

  • What is an easy way to call a FFmpeg executable compiled for Android from java code ?

    6 février 2013, par dentex

    I have compiled FFmpeg for Android to suite my needs in terms of codecs, muxers etc.
    Now I have an executable that, from what I understand, should be placed in my project dir under /external//data/data//app_opt. What I have inside app_opt now is :

       .
    ├── bin
    │   └── ffmpeg
    ├── include
    │   ├── libavcodec
    │   │   ├── avcodec.h
    │   │   ├── avfft.h
    │   │   ├── dxva2.h
    │   │   ├── vaapi.h
    │   │   ├── vda.h
    │   │   ├── vdpau.h
    │   │   ├── version.h
    │   │   └── xvmc.h
    │   ├── libavdevice
    │   │   └── avdevice.h
    │   ├── libavfilter
    │   │   ├── asrc_abuffer.h
    │   │   ├── avcodec.h
    │   │   ├── avfiltergraph.h
    │   │   ├── avfilter.h
    │   │   ├── buffersink.h
    │   │   ├── buffersrc.h
    │   │   ├── version.h
    │   │   └── vsrc_buffer.h
    │   ├── libavformat
    │   │   ├── avformat.h
    │   │   ├── avio.h
    │   │   └── version.h
    │   ├── libavutil
    │   │   ├── adler32.h
    │   │   ├── aes.h
    │   │   ├── attributes.h
    │   │   ├── audioconvert.h
    │   │   ├── audio_fifo.h
    │   │   ├── avassert.h
    │   │   ├── avconfig.h
    │   │   ├── avstring.h
    │   │   ├── avutil.h
    │   │   ├── base64.h
    │   │   ├── bprint.h
    │   │   ├── bswap.h
    │   │   ├── common.h
    │   │   ├── cpu.h
    │   │   ├── crc.h
    │   │   ├── dict.h
    │   │   ├── error.h
    │   │   ├── eval.h
    │   │   ├── fifo.h
    │   │   ├── file.h
    │   │   ├── imgutils.h
    │   │   ├── intfloat.h
    │   │   ├── intfloat_readwrite.h
    │   │   ├── intreadwrite.h
    │   │   ├── lfg.h
    │   │   ├── log.h
    │   │   ├── lzo.h
    │   │   ├── mathematics.h
    │   │   ├── md5.h
    │   │   ├── mem.h
    │   │   ├── opt.h
    │   │   ├── parseutils.h
    │   │   ├── pixdesc.h
    │   │   ├── pixfmt.h
    │   │   ├── random_seed.h
    │   │   ├── rational.h
    │   │   ├── samplefmt.h
    │   │   ├── sha.h
    │   │   ├── timecode.h
    │   │   └── timestamp.h
    │   ├── libpostproc
    │   │   └── postprocess.h
    │   ├── libswresample
    │   │   └── swresample.h
    │   └── libswscale
    │       └── swscale.h
    ├── lib
    │   ├── libavcodec.a
    │   ├── libavdevice.a
    │   ├── libavfilter.a
    │   ├── libavformat.a
    │   ├── libavutil.a
    │   ├── libpostproc.a
    │   ├── libswresample.a
    │   ├── libswscale.a
    │   └── pkgconfig
    │       ├── libavcodec.pc
    │       ├── libavdevice.pc
    │       ├── libavfilter.pc
    │       ├── libavformat.pc
    │       ├── libavutil.pc
    │       ├── libpostproc.pc
    │       ├── libswresample.pc
    │       └── libswscale.pc
    └── share
       └── ffmpeg
           ├── examples
           │   ├── decoding_encoding.c
           │   ├── filtering_audio.c
           │   ├── filtering_video.c
           │   ├── Makefile
           │   ├── metadata.c
           │   └── muxing.c
           ├── ffprobe.xsd
           ├── libvpx-1080p50_60.ffpreset
           ├── libvpx-1080p.ffpreset
           ├── libvpx-360p.ffpreset
           ├── libvpx-720p50_60.ffpreset
           ├── libvpx-720p.ffpreset
           ├── libx264-ipod320.ffpreset
           └── libx264-ipod640.ffpreset

    Do I need just the ffmpeg under bin to place in my project's /res/raw dir ?

    And what is the easiest way to call ffmpeg and feed it with a command string ?

    I compiled FFmpeg with limited decoders and demuxers, because I need audio extraction only.

    See : How can I get FFmpeg to locate installed libraries when —sysroot is pointing to another directory ?

    I would use it in background and notify the user in notification bar on completion.

    I know that, here on SO, other similar questions are present, but they are a bit vague or confusing, at least for me. I understand at this point I lack of competences (actually my App is a jigsaw made of java-code-snippets from the Net that work together).

    I'd appreciate some guidance.
    Thanks.

  • avcodec/h264 : call flush_change() on init

    10 octobre 2013, par Michael Niedermayer
    avcodec/h264 : call flush_change() on init
    

    This ensures that all the non zero fields get setup correctly.
    Alternatively their initialization could be duplicated.

    Fixes Ticket2738

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

    • [DH] libavcodec/h264.c
  • Revision 8b34437522 : Replacing duplicated code with get_scan_and_band call. Change-Id : I2cc3684f416a

    4 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Replacing duplicated code with get_scan_and_band call.

    Change-Id : I2cc3684f416a63dc99b9303109f9850f34a470d5