Recherche avancée

Médias (91)

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9134)

  • fate : Remove vsync drop from some h264 tests

    20 mars 2016, par Michael Niedermayer
    fate : Remove vsync drop from some h264 tests
    

    Note some tests need vsync drop to produce exact timestamps, these seem not to
    need it. quite likely many more dont need it either, ive not checked beyond finding
    one that needs it and the ones which have it removed

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/h264.mak
  • lavc : introduce a new decoding/encoding API with decoupled input/output

    22 mars 2016, par wm4
    lavc : introduce a new decoding/encoding API with decoupled input/output
    

    Until now, the decoding API was restricted to outputting 0 or 1 frames
    per input packet. It also enforces a somewhat rigid dataflow in general.

    This new API seeks to relax these restrictions by decoupling input and
    output. Instead of doing a single call on each decode step, which may
    consume the packet and may produce output, the new API requires the user
    to send input first, and then ask for output.

    For now, there are no codecs supporting this API. The API can work with
    codecs using the old API, and most code added here is to make them
    interoperate. The reverse is not possible, although for audio it might.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/internal.h
    • [DBH] libavcodec/utils.c
    • [DBH] libavcodec/version.h
    • [DBH] libavformat/avformat.h
  • Using FFMPEG library in PPAPI : Naclports with FFmpeg

    30 avril 2017, par rasulzhan

    I have configured Webports, ffmpeg ; and I have created the following Makefile for the current project. However, I have met some problem with ffmpeg library linking.

    $ TOOLCHAIN=pnacl make
     LINK pnacl/Release/client_unstripped.bc
    pnacl/Release/src/client.o: error: undefined reference to 'av_register_all'
    make: *** [pnacl/Release/client_unstripped.bc] Error 1

    Can you tell me what I am doing wrong here, my Makefile is shown below :

    VALID_TOOLCHAINS := pnacl glibc clang-newlib win

    NACL_SDK_ROOT ?= $(abspath $(CURDIR)/../..)

    TARGET = client

    OTHERDIR=src

    INC_DIR = inc

    FFMPEG_INC_DIR = ../../toolchain/mac_pnacl/le32-nacl/usr/include

    INCLUDES = -I$(INC_DIR) -I$(FFMPEG_INC_DIR)

    include $(NACL_SDK_ROOT)/tools/common.mk

    CHROME_ARGS += —allow-nacl-socket-api=localhost

    LIBS = nacl_io ppapi_cpp ppapi

    CFLAGS = -Wall -g -O2 $(INCLUDES)
    -L../../toolchain/mac_pnacl/le32-nacl/usr/lib -lavformat \
    -lvpx -lvorbisenc -lvorbis -logg -ltheoraenc -ltheoradec -logg -lmp3lame -lm -pthread -lavcodec -lvpx -lvorbisenc -lvorbis -logg \
    -ltheoraenc -ltheoradec -logg -lmp3lame -lm -pthread -lswresample -lm -lavutil -lm -lavdevice -lavfilter

    SOURCES = $(OTHERDIR)/tcp_util.cc $(OTHERDIR)/tpool.cc
    $(OTHERDIR)/net.cc $(OTHERDIR)/rtsp_response.cc \ $(OTHERDIR)/rtsp.cc
    $(OTHERDIR)/rtsp_common.cc \ $(OTHERDIR)/rtsp_client.cc
    $(OTHERDIR)/udp_util.cc \ $(OTHERDIR)/client.cc

    # Build rules generated by macros from common.mk :

    $(foreach src,$(SOURCES),$(eval $(call
    COMPILE_RULE,$(src),$(CFLAGS))))

    # The PNaCl workflow uses both an unstripped and finalized/stripped binary.
    # On NaCl, only produce a stripped binary for Release configs (not Debug). ifneq (,$(or $(findstring pnacl,$(TOOLCHAIN)),$(findstring
    Release,$(CONFIG)))) $(eval $(call
    LINK_RULE,$(TARGET)_unstripped,$(SOURCES),$(LIBS),$(DEPS))) $(eval
    $(call STRIP_RULE,$(TARGET),$(TARGET)_unstripped)) else $(eval $(call
    LINK_RULE,$(TARGET),$(SOURCES),$(LIBS),$(DEPS))) endif

    $(eval $(call NMF_RULE,$(TARGET),))

    And here is the way, how the library has been used in the class context.

    class VideoDecodePack {
    public:
       VideoDecodePack() {
           av_register_all();
       }
    };

    class ClientInstance : public pp::Instance {
    public:
     explicit ClientInstance(PP_Instance instance) : pp::Instance(instance){
       cses = InitRtspClientSession();
       _videoDecoder = new VideoDecodePack();
     }
    ...