Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (14004)

  • rtsp url to stream on kurento

    23 mai 2019, par damini chopra

    I have installed ffmpeg and when MP4 video is successfully running on URL :http://x.x.x.x:8050/live.mjpeg ,but when i want url(http://180.179.214.151:8050/live.mjpeg) of to display on remote stream of kurento it doesnt display any visual.

    Logs in kurento console :

    Remote icecandidate "module" :"kurento","type" :"IceCandidate","candidate" :"candidate:1 2 UDP 2013266430 172.17.0.2 35776 typ host","sdpMLineIndex":1,"sdpMid" :"1"
    Remote icecandidate "module" :"kurento","type" :"IceCandidate","candidate" :"candidate:3 2 TCP 1010827518 172.17.0.2 43398 typ host tcptype passive","sdpMLineIndex":1,"sdpMid" :"1"
    oniceconnectionstatechange -> checking
    icegatheringstate -> gathering
    Player playing ...

  • ONVIF Device Manager API and Decoder

    10 juillet 2023, par spiderelite

    I'm working on the source code of the onvif device manager software and I want to find the Api and decoder it uses.

    


    I first separated the odm.player part of the code into another solution and built it separately. the separated part contains these parts from the source code (in order of execution) :

    


    utils.linq
utils.diagnostics
utils.common
odm.player.lib
odm.player.media
live555
odm.player.net
utils.xml
utils.bootstrapping
odm.player.host


    


    Im tring to find the decoder and Api it uses(in the above parts) to decode the media. i need to find the specific part of the program to contain some information from a decoder.

    


    I know the source code is using ffmpeg and live555 libraries but I need to find their use and API in the odm.player part.

    


    I checked odm.player.host because it is the last project and depends on previous ones, but didn't find anything.

    


    what should i do next ? is there any official documentation of the API ? is there any important keyword related to ffmpeg that can I search it in the code ?

    


  • Android NDK & FFMPEG : libffmpeg.so is not getting created

    20 février 2015, par Palak Darji

    I am using this to build ffmpeg on ndk :
    roman10’s android ndk r9d - ffmpeg tutorial

    I am able to run build_android.sh script. I am getting libavcodec-55.so and all that files under android folder. But I am not getting this : libffmpeg.so

    The link shows how to compile, but its not clear how to use it. Can anybody guide me ? Thanks.

    My build_android.sh

    #!/bin/bash

    NDK_PLATFORM_LEVEL=19
    NDK_COMPILER_VERSION=4.8

    # Android now has 64-bit and 32-bit versions of the NDK for GNU/Linux.  We
    # assume that the build platform uses the appropriate version, otherwise the
    # user building this will have to manually set NDK_PROCESSOR or NDK_TOOLCHAIN.
    if [ $(uname -m) = "x86_64" ]; then
       NDK_PROCESSOR=x86_64
    else
       NDK_PROCESSOR=x86
    fi

    NDK_UNAME=`uname -s | tr '[A-Z]' '[a-z]'`


    NDK=/home/palak/NDK/android-ndk-r10d

    function build_one
    {
       if [ $NDK_ABI = "x86" ]; then
           HOST=i686-linux-android
           NDK_TOOLCHAIN=$NDK_ABI-$NDK_COMPILER_VERSION
       echo hostx86=$HOST
       echo ndk_toolchain=$NDK_TOOLCHAIN
       else
           HOST=$NDK_ABI-linux-androideabi
           NDK_TOOLCHAIN=$HOST-$NDK_COMPILER_VERSION
       echo hostelse=$HOST
       echo ndk_toolchain=$NDK_TOOLCHAIN
       fi

       SYSROOT=$NDK/platforms/android-$NDK_PLATFORM_LEVEL/arch-$NDK_ABI/
       export SYSROOTNEW=$NDK/platforms/android-$NDK_PLATFORM_LEVEL/arch-$NDK_ABI
       TOOLCHAIN=$NDK/toolchains/$NDK_TOOLCHAIN/prebuilt/$NDK_UNAME-$NDK_PROCESSOR
       echo sysroot=$SYSROOT
       echo prefix=$PREFIX
       echo toolchain=$TOOLCHAIN
       echo ndk=$NDK

    make distclean > /dev/null 2>&1

    sudo ./configure \
       --prefix=$PREFIX \
       --enable-shared \
       --disable-debug \
       --enable-stripping \
       --enable-static \
       --disable-doc \
       --enable-ffmpeg \
       --disable-ffplay \
       --disable-ffprobe \
       --disable-ffserver \
       --disable-avdevice \
       --disable-doc \
       --disable-symver \
       --cross-prefix=$TOOLCHAIN/bin/$HOST- \
       --target-os=linux \
       --arch=arm \
       --enable-cross-compile \
       --sysroot=$SYSROOT \
       --enable-pic \
       --extra-cflags="-Os -fpic $ADDI_CFLAGS" \
       --extra-ldflags="$ADDI_LDFLAGS" \
       $ADDITIONAL_CONFIGURE_FLAG
    make clean
    make -j16
    make install
    }

    CPU=arm
    PREFIX=$(pwd)/android/$CPU
    ADDI_CFLAGS="-marm"
    ADDITIONAL_CONFIGURE_FLAG="--cpu=cortex-a8"

    NDK_ABI=x86
    CPU=i686
    PREFIX=$(pwd)/android/x86
    ADDI_CFLAGS="-pipe -march=atom -msse3 -ffast-math -mfpmath=sse"
    ADDI_LDFLAGS="-lm -lz -Wl,--no-undefined -Wl,-z,noexecstack"
    ADDITIONAL_CONFIGURE_FLAG="--arch=x86 --cpu=i686"

    build_one

    I am using Ndk r10, ffmpeg 2.5.4, ubuntu x86.

    Edit : Android.mk

    LOCAL_PATH:= /home/palak/NDK/ffmpeg-2.5.4/android/arm

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libavcodec
    LOCAL_SRC_FILES:= lib/libavcodec-56.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libavformat
    LOCAL_SRC_FILES:= lib/libavformat-56.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libswscale
    LOCAL_SRC_FILES:= lib/libswscale-3.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libavutil
    LOCAL_SRC_FILES:= lib/libavutil-54.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libavfilter
    LOCAL_SRC_FILES:= lib/libavfilter-5.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)

    include $(CLEAR_VARS)
    LOCAL_MODULE:= libswresample
    LOCAL_SRC_FILES:= lib/libswresample-1.so
    LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
    include $(PREBUILT_SHARED_LIBRARY)