Recherche avancée

Médias (91)

Autres articles (103)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

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

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9036)

  • avformat/libsrt : fix or simplify some function return values

    31 janvier 2021, par Marton Balint
    avformat/libsrt : fix or simplify some function return values
    

    Sometimes there was a confusion between srt_*() function return values and
    libavformat-style return values.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/libsrt.c
  • Stream newly generated jpgs as mpegts with ffmpeg

    9 juillet 2020, par Theodor

    I am trying to generate a mpegts stream from a jpg image that is continuously being overwritten, with the help of ffmpeg.

    &#xA;

    In my current setup another program is writing the new images to an image called "cam0.jpg", with a framerate that varies between 1 to 20 fps, and I use this command to generate a mpegts stream

    &#xA;

    ffmpeg -f image2 -framerate 20 -pattern_type none -stream_loop -1 -re -i cam0.jpg -f mpegts -c:v libx264 -preset superfast udp://127.0.0.1:23000&#xA;

    &#xA;

    The stream works fine for a while when it suddenly stops without any obvious error or warning. I have figured out that when I am not writing new images to "cam0.jpg" the stream can go on indefinitely, so there seem to be some problem arising after a while from writing new images to the image ffmpeg is streaming from.

    &#xA;

    Is there some obvious error in my command or quick fix that can solve my problem ?

    &#xA;

    Or can anyone recommend another way to stream the images efficiently ? My starting point is that I need to generate a stream from jpg images, either created with timestamps, incremental counter or a continuously overwritten jpg.

    &#xA;

  • ffmpeg generated video with silent audio has different stream lengths

    18 septembre 2015, par JennHarper

    I am trying to generate a video clip of a single image and add a silent audio track for concatenating with other video files.
    I can successfully create the mp4 video with the desired image and audio track BUT, according to mediaInfo, the length of the video stream and the length of the audio stream are different. They are off by up to 60 ms. As I plan to concatenate several of these image clips and other video clips, I don’t want the error to accumulate. Any thoughts or suggestions for maintaining perfect video/audio sync ?

    Here are the ffmpeg commands that I am using :

    C :\FFmpeg\bin\ffmpeg.exe -loop 1 -i myImage.jpg -codec:v libx264 -t 7 -profile:v high -preset slow -r 25 -b:v 500k -maxrate 500k -vf scale=1280:720 -y videoStreamOnly.mp4

    C :\FFmpeg\bin\ffmpeg.exe -f lavfi -i anullsrc=r=48000 -i videoStreamOnly.mp4 -shortest -c:v copy -c:a aac -strict experimental -y videoWithSilentAudioStream.mp4