Recherche avancée

Médias (91)

Autres articles (93)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • php ffmpeg convert existing videos to 4k resolution

    27 février 2014, par user3361920

    Hi I have a list of videos placed on the server in a directory. All I want is to convert them to 4k resolution as currently they are in 1920x1080 resolution. FFmpeg library is already existing.

    Will this ffmpeg will do the job for me or I need some other library for this ? If ffmpeg will do then please can somebody help me by giving the code in PHP .

    Please forgive for asking anything wrong .
    Thanks in Advance

  • Using ffmpeg to restream youtube videos

    2 juin 2020, par ILoveCake

    I want to restream 3 youtube videos (each one is a live webcam) in this way : they would run one after the other, but each one runs for only 1 minute. All this in a loop. So my live stream would eventually look like this :
cam1, cam2, cam3, cam1, cam2, cam3, ...
I have tried to used youtube-dl and ffmpeg (these are my preferred command line tools) to download each stream, let it run for 1 minute and restream it. The problem is that I have to start ffmpeg each time. So when it stops and starts again, the live stream stops and starts again (after about 15 seconds). Here is my code (for bash) :

    



    The main script : (FILE is an array with the 3 URLs for the videos)

    



    for URL in "${FILE[@]}"
do
  timeout 1m /usr/local/bin/get_livestream.sh $URL
done



    



    and get_livestream.sh :

    



    youtube-dl -q -o - -- $1 | ffmpeg -re -loglevel warning -hide_banner \&#xA;  -i - -s 960x540 -c:v libx264 -b:v 2M -c:a copy \&#xA;  -strict -2 -flags &#x2B;global_header -bsf:a aac_adtstoasc -bufsize 2100k \&#xA;  -f flv rtmp://live.twitch.tv/app/<key>&#xA;</key>

    &#xA;

  • How to crop videos with black frames on top and bottom

    14 février 2019, par jennie

    I want to crop videos with black frames on the bottom and top follow the scale as described in the video : https://youtu.be/QIXgvGF59CM

    Can you help me write code using ffmpeg ?