Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

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

Autres articles (20)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5105)

  • Can't update app in store because of target api23 (no downgrade possible)

    4 mai 2016, par Thkru

    long story short :

    Problem :

    • apps uploaded with target api23 once, can’t be updated with lower target api
    • metaio can’t handle api23, due to a text relocations bug

    Idea so far :

    • replace the old libavcodec.so (arm & x86) by a newer version,
      but I can’t find any compiled version...

    PS : sure it’s dump to use a deprecated sdk and it has to be replaced sometime in the future, but for now I have to use it, as there’s a huge content and backend part that is used in the project.

    PPS : worst case idea is to upload the same app but with a different ID, api22 and AR features in the GooglePlay...and having two nearly identical apps... <_<

    Thanks a lot for every help ! :)

  • Révision 17405 : Petit changement dans l’appel des 2 fonctions infos_plugin et infos_paquet charg...

    14 mars 2011, par esj@rezo.net

    Par exemple pour avoir le tableau des arbres des syntaxe abstraites de tous les plugins d’un dépot, faire : $ar = file_get_contents(’archives.xml’) ; preg_match_all(’@&lt ;plugin&gt ;.* ?&lt ;/plugin&gt ;@s’, $ar, $m) ; $f = charger_fonction(’infos_plugin’, ’plugins’) ; $m = $m[0] ; (...)

  • Websocket connection in Docker

    22 avril 2024, par Akhil Varghese

    I have a Node.js app that takes an RTSP URL as input and provide a jsmpeg websocket stream as output. The focus of app is to generate a web compatible stream from an RTSP stream, and I have acheived this using a package rtsp-relay.&#xA;The app is working fine in locally.&#xA;But after dockerizing the app, I am not receiving the output stream. The stream is getting terminated.

    &#xA;

    The log is&#xA;enter image description here

    &#xA;

    The Dockerfile is :&#xA;I am building the ffmpeg from source in docker.

    &#xA;

    &#xA;# Install necessary packages&#xA;RUN apt-get update &amp;&amp; \&#xA;    DEBIAN_FRONTEND=noninteractive apt-get install -yq \&#xA;    autoconf \&#xA;    automake \&#xA;    build-essential \&#xA;    cmake \&#xA;    git \&#xA;    libass-dev \&#xA;    libfreetype6-dev \&#xA;    libgnutls28-dev \&#xA;    libmp3lame-dev \&#xA;    libsdl2-dev \&#xA;    libtool \&#xA;    libva-dev \&#xA;    libvdpau-dev \&#xA;    libvorbis-dev \&#xA;    libxcb1-dev \&#xA;    libxcb-shm0-dev \&#xA;    libxcb-xfixes0-dev \&#xA;    meson \&#xA;    ninja-build \&#xA;    pkg-config \&#xA;    texinfo \&#xA;    wget \&#xA;    yasm \&#xA;    zlib1g-dev \&#xA;    libunistring-dev \&#xA;    libaom-dev \&#xA;    libdav1d-dev \&#xA;    libnuma-dev \&#xA;    libopus-dev &amp;&amp; \&#xA;    rm -rf /var/lib/apt/lists/*&#xA;&#xA;# Create directories&#xA;RUN mkdir -p /ffmpeg_sources /ffmpeg_build /bin&#xA;RUN apt-get update&#xA;RUN  apt-get install -y nasm&#xA;RUN  apt-get install -y yasm&#xA;&#xA;# Build and install NASM&#xA;WORKDIR /ffmpeg_sources&#xA;RUN wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.bz2 &amp;&amp; \&#xA;    tar xjvf nasm-2.16.01.tar.bz2 &amp;&amp; \&#xA;    cd nasm-2.16.01 &amp;&amp; \&#xA;    ./autogen.sh &amp;&amp; \&#xA;    ./configure --prefix="/ffmpeg_build" --bindir="/bin" &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install&#xA;&#xA;# Build and install x264&#xA;RUN apt-get update&#xA;RUN apt-get install -y libx264-dev&#xA;&#xA;&#xA;# Build and install x265&#xA;RUN apt-get install -y libx265-dev libnuma-dev&#xA;&#xA;# Build and install libvpx&#xA;RUN git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git &amp;&amp; \&#xA;    cd libvpx &amp;&amp; \&#xA;    ./configure --prefix="/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install&#xA;&#xA;# Build and install fdk-aac&#xA;RUN git clone --depth 1 https://github.com/mstorsjo/fdk-aac &amp;&amp; \&#xA;    cd fdk-aac &amp;&amp; \&#xA;    autoreconf -fiv &amp;&amp; \&#xA;    ./configure --prefix="/ffmpeg_build" --disable-shared &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install&#xA;&#xA;# Build and install opus&#xA;RUN git clone --depth 1 https://github.com/xiph/opus.git &amp;&amp; \&#xA;    cd opus &amp;&amp; \&#xA;    ./autogen.sh &amp;&amp; \&#xA;    ./configure --prefix="/ffmpeg_build" --disable-shared &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install&#xA;&#xA;# Build and install SVT-AV1&#xA;RUN git clone --depth=1 https://gitlab.com/AOMediaCodec/SVT-AV1.git &amp;&amp; \&#xA;    cd SVT-AV1 &amp;&amp; \&#xA;    cd Build &amp;&amp; \&#xA;    cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install&#xA;&#xA;&#xA;# Build and install dav1d&#xA;RUN git clone --depth 1 https://code.videolan.org/videolan/dav1d.git &amp;&amp; \&#xA;    mkdir -p dav1d/build &amp;&amp; \&#xA;    cd dav1d/build &amp;&amp; \&#xA;    meson setup -Denable_tools=false -Denable_tests=false --default-library=static .. --prefix "/ffmpeg_build" --libdir="/ffmpeg_build/lib" &amp;&amp; \&#xA;    ninja &amp;&amp; \&#xA;    ninja install&#xA;&#xA;# Build and install ffmpeg&#xA;RUN wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 &amp;&amp; \&#xA;    tar xjvf ffmpeg-snapshot.tar.bz2 &amp;&amp; \&#xA;    cd ffmpeg &amp;&amp; \&#xA;    ./configure \&#xA;      --prefix="/ffmpeg_build" \&#xA;      --pkg-config-flags="--static" \&#xA;      --extra-cflags="-I/ffmpeg_build/include" \&#xA;      --extra-ldflags="-L/ffmpeg_build/lib" \&#xA;      --extra-libs="-lpthread -lm" \&#xA;      --ld="g&#x2B;&#x2B;" \&#xA;      --bindir="/bin" \&#xA;      --enable-gpl \&#xA;      --enable-gnutls \&#xA;      --enable-libaom \&#xA;      --enable-libass \&#xA;      --enable-libfdk-aac \&#xA;      --enable-libfreetype \&#xA;      --enable-libmp3lame \&#xA;      --enable-libopus \&#xA;      --enable-libsvtav1 \&#xA;      --enable-libdav1d \&#xA;      --enable-libvorbis \&#xA;      --enable-libvpx \&#xA;      --enable-libx264 \&#xA;      --enable-libx265 \&#xA;      --enable-nonfree \&#xA;      --extra-ldflags="-lm -lstdc&#x2B;&#x2B; -L/ffmpeg_build/lib -Wl,-rpath,/ffmpeg_build/lib" \&#xA;      --extra-cflags="-I/ffmpeg_build/include" \&#xA;      --extra-libs="-lpthread -lm -lstdc&#x2B;&#x2B;" &amp;&amp; \&#xA;    make &amp;&amp; \&#xA;    make install &amp;&amp; \&#xA;    hash -r&#xA;&#xA;# Update PATH&#xA;ENV PATH="/ffmpeg_build/bin:${PATH}"&#xA;&#xA;# Cleanup&#xA;RUN rm -rf /ffmpeg_sources&#xA;&#xA;# Source profile&#xA;RUN echo "source /root/.profile" >> ~/.bashrc&#xA;&#xA;&#xA;&#xA;WORKDIR /usr/src/app&#xA;RUN apt-get update&#xA;RUN apt-get install -y nodejs&#xA;RUN apt-get install -y npm&#xA;COPY package*.json ./&#xA;RUN npm install&#xA;COPY . .&#xA;EXPOSE 2000&#xA;CMD ["npm", "start"]&#xA;

    &#xA;

    While checking the network rules in the Docker image with the command : iptables -L&#xA;I am getting the following response :&#xA;enter image description here

    &#xA;

    I am able to access every API of the dockerized app, and I receive the responses and logs. but I'm not receiving the jsmpeg stream through the websocket connection.

    &#xA;

    I'm uncertain about the exact problem or how to resolve it.If you have encountered a similar issue before, and have a solution, I would greatly appreciate your assistance.

    &#xA;