Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (67)

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (8167)

  • Error while compile FFmpeg in Mac os

    24 septembre 2015, par Devganiya Hitesh

    I have downloaded Github projects ffmpeg-android.
    I have also followed all step given by him but in last step ./android_build.sh i’m facing following error in terminal.

    make: *** No rule to make target `clean'. Stop.
    make: *** No rule to make target `Makefile'.  Stop.
    ./libpng_build.sh: line 17: ./configure: No such file or directory
  • Restart ffmpeg on loss of stream

    21 octobre 2018, par JoeN

    I record a rtmps stream with ffmpeg, occasionally the stream drops out for various reasons (isp failure, network problems) Ffmpeg stops and I have to manualy restart it.
    Is there a way to monitor for stream loss and restart ffmpeg ?
    Maybe a script ? I use Linux. I have tried timout stimout but they do not work.

    Here is my ffmpeg command that I enter in terminal

    ffmpeg -i rtmps://(url) -r 25 \
    -vf "drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: text='%{localtime}': x=(w-tw)/2: y=h-(2*lh): fontcolor=white: fontsize=24: box=1: boxcolor=0x00000000@1" \
    -f segment -strftime 1 -segment_time 1800 \
    -segment_format mkv /media/joe/disk/a/%m_%d_%Y-%H_%M_%S.mkv
  • ffmpeg issue when recording screen+microphone+(music from file)

    9 juin 2016, par Taras Nikulin

    I’m trying to record using this command :

    ffmpeg -f avfoundation -pix_fmt nv12 -i "1:0" -r 30 -i monoSound.aac -filter_complex amerge=inputs=2 -vcodec h264 -qscale:v 0 -acodec aac -ab 128k -ac 1 -ar 44100 -async 30 outScreen.mp4

    I get such error :

    The following filters could not choose their formats: Parsed_amerge_0
    Consider inserting the (a)format filter near their input or output.
    Error configuring complex filters.
    Input/output error

    If i rewove this "-async 30", then no errors appear in terminal. But on final video sound will disappear after couple seconds.