Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (63)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10144)

  • avformat/avienc : add muxer option "write_channel_mask"

    10 septembre 2015, par Tobias Rapp
    avformat/avienc : add muxer option "write_channel_mask"
    

    Allow writing an empty channel mask into the wave format header. Useful
    if the input file contains an unknown channel layout.

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

    • [DH] libavformat/avienc.c
    • [DH] libavformat/riff.h
    • [DH] libavformat/riffenc.c
  • FFMPEG multi livestream - recorded stream send to different services like YT and Twitch at different time (on different button clicks )

    4 octobre 2022, par Ganesh

    Trying for the last 10 days and still no success, I am creating a python application that will accept the URL and visit that URL using chromium, capture that screen and send that real-time screen recording to different live stream acceptors as youtube live, twitch Twitter, Facebook live or some other sources and many of these could be multiple.

    &#xA;

    There are two challenges (both challenges depend on a user action like different button clicks) -

    &#xA;

      &#xA;
    • The time of starting the Livestream we know only one Livestream acceptor and other acceptors could be sent via another API at any time or may not be sent on the whole live stream.
    • &#xA;

    • Any of the streams could be stopped at any moment including the first one which started the original live streaming service
    • &#xA;

    &#xA;

    To Solve these challenges I am trying the following process (i took mp4 as a source for simplifying)

    &#xA;

      &#xA;
    • create a stream and store it into PIPE.stdout
    • &#xA;

    &#xA;

    ffmpeg_Command_get_stream = &#x27;ffmpeg -re -i test.mp4 -f flv pipe:1&#x27;&#xA;ffmpeg_Command_get_stream=ffmpeg_Command_get_stream.split()&#xA;pipe = sp.Popen(ffmpeg_Command_get_stream,&#xA;            stdout=sp.PIPE,&#xA;            stderr=sp.PIPE,&#xA;            bufsize=8000000,&#xA;            shell=True,&#xA;            universal_newlines=True&#xA;            )&#xA;out,err = pipe.communicate()&#xA;

    &#xA;

      &#xA;
    • and send that stream with the help of FFMPEG to the Livestream acceptor with the click of the youtube Livestream button

      &#xA;

      ffmpeg_Command_send_stream = [&#x27;ffmpeg&#x27;,&#x27;-i&#x27;,pipe.stdout,&#x27;-f&#x27;,&#x27;flv&#x27;,RTMPURL_YOUTUBE]

      &#xA;

    • &#xA;

    &#xA;

    Update Trying to Explain it a little more :

    &#xA;

    step 1 - I need a real-time stream from the first command, so I used -re in FFMPEG

    &#xA;

    step 2 - Use above stream as an input for other command and send that as an output as a Livestream to youtube (or twitch/Facebook), But the second step would happen only when the user click on the button "YT LiveStream", Here the tricky thing is there are multiple buttons (YT LiveStream, Twitch LiveStream, Facebook LiveStream) and user can click any time on any of button, also can click on all button one by one.

    &#xA;

    enter image description here

    &#xA;

    sorry for bad explaination

    &#xA;

    what I am doing wrong ? , Is this Possible ? or need to go with another process,

    &#xA;

    any help would be greatly appreciated

    &#xA;

  • x264 Building error - Android

    21 avril 2016, par Jay Parikh

    I am using this repository to build ffmpeg static library which includes x264,libpng and others, please
    visit this link https://github.com/writingminds/ffmpeg-android

    i am using windows 7 as host and ubuntu 15.10 (_64) as guest os using VMware Workstation 12
    and
    Android-ndk-r11b-linux-x86_64

    i do have Prebuilt libraries , but now i want it without PIE support

    i am getting this error in config.log in x264 folder while building
    through

    ./android_build.sh

    here is the log :

    x264 configure script
    Command line options: "--cross-prefix=/mnt/hgfs/uShare/ffmpeg-android/toolchain-android/bin/arm-linux
    /mnt/hgfs/uShare/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-gcc

    checking whether /mnt/hgfs/uShare/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi-gcc

    --sysroot=/mnt/hgfs/uShare/ffmpeg-android/toolchain-android/sysroot works... no

    Failed commandline was:

    --sysroot=/mnt/hgfs/uShare/ffmpeg-android/toolchain-android/sysroot conftest.c  -Wall -I. -I$(SRCPATH) --sysroot=/mnt/hgfs/uShare/ffmpeg-android/toolchain-android/sysroot    --sysroot=/mnt/hgfs/uShare/ffmpeg-android/toolchain-android/sysroot -lm -o conftest

    /mnt/hgfs/uShare/ffmpeg-android/toolchain-android/bin/../lib/gcc/arm-linux-androideabi/4.9/../../../../arm-linux-androideabi/bin/ld: fatal error:

    conftest: Input/output error

    Failed program was:

    int main (void) {  return 0; }

    DIED: No working C compiler found.

    ushare is my shared folder between windows and ubuntu

    I have spend almost a week ,trying to solve every error i get.
    these errors are like never ending , 1 solution give 10 more errors
    i have researched a LOT for this library

    thanks a lot in advance.

    Also i thought that x264 library might have poroblem ,so i tried to disable it
    but next library "libpng" also had Same log Error

    i think problem is in Input/output error (obviously)
    this line in log kind of confuses me (those /../../)

    /mnt/hgfs/uShare/ffmpeg-android/toolchain-android/bin/../lib/gcc/arm-linux-androideabi/4.9/../../../../arm-linux-androideabi/bin/ld : fatal error :

    its like two folder overlaping address...

    thanks a lot in advance.
    please don’t go harsh on me ,its my first time,all thanks to this thing...