Advanced search

Medias (91)

Other articles (62)

  • La sauvegarde automatique de canaux SPIP

    1 April 2010, by

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 April 2011, by

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 April 2011, by

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

On other websites (5224)

  • Revision 906c1b4bd9: changed to avoid code confusion The previous double if and else code snippets w

    22 October 2012, by Yaowu Xu

    Changed Paths: Modify /vp8/common/findnearmv.c changed to avoid code confusion The previous double if and else code snippets were rather confusing. Change-Id: Id1b6152fa0e471beb9b20407aa406e109c1471e3

  • How to streaming via rtp protocol?

    27 June 2014, by user3782787

    i’m try to streaming from com-1 to com-2.
    I stream audio by command:

    ffmpeg -re -i input.mp3 -r:a 11025 -c:a libmp3lame -f rtp rtp://ip_of_com_2:port_com_2

    and it’s work.

    But, when i stream audio by command:

    ffmpeg -re -i input.mp3 -c:a copy -f rtp rtp://ip_of_com_2:port_com_2

    it’s error from ffplay on com_2
    "Unable to receive RTP payload type 97 without an SDP file describing it"

    i must copy text SDP from com_1 to com_2 and at com_2
    i play file .sdp after it can play stream from com_1

    can you explan for me ? ,how to stream video via rtp protocol (it same error above) and stream video without copy file sdp to com_2

  • avi encoded to streaming mp4 not playing in html5 player

    30 May 2013, by Vprnl

    [EDIT]

    I'm trying to get ffmpeg to encode various AVI files to mp4 for streaming purposes

    I use this commandline:

    ffmpeg -i test.avi -vcodec libx264 -bf 8 -r 24 -ac 2 -acodec ac3 -ab 128k -bt 240k -preset    fast -strict -2 -b:v 320K -bufsize 62000 -maxrate 62000 test.mp4

    After tinkering, the ffmpeg part works and the stream gets send to the client properly. Only my html 5 wrapper "VideoJS" gives me an undefined error trying to play the video.
    I tried the flash fallback as well as plain html5 but I can not seem to get the video to actually play.

    I get this log:

    enter image description here

    I hope someone can point me in the right direction. Thanks!