Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (52)

  • 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

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8956)

  • youtube-dl download best quality and then convert to mp4 and mp3

    31 mars 2017, par JoJota

    I’m trying to download the best audio and video formats of a video with youtube-dl in python. After the download has finished youtube-dl should convert the video to mp4 and the audio to mp3 with the best video and audio quality. The original video and audio files should then get removed after the conversion is done.

    Is it possible to do this with only one command or especially with a maximum of two downloads (best video and best audio) ?

  • ffmpeg streaming to youtube

    8 novembre 2022, par SyndicatorBBB

    I've used the following command to stream mp4 file to youtube :

    


    ffmpeg -re -i merge.mp4 \&#xA;-c:v libx264 -preset veryfast -maxrate 3000k \&#xA;-bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \&#xA;-ar 44100 -f flv rtmp://a.rtmp.youtube.com/live2/<mykey>&#xA;</mykey>

    &#xA;

    I see the ffmpeg streams the data like that :&#xA;enter image description here

    &#xA;

    but yet the youtube streaming page shows nothing yet received :&#xA;enter image description here

    &#xA;

    Any idea what am I missing ?

    &#xA;

  • Ffmpeg command not streaming to youtube [closed]

    21 avril, par Ahmed Seddik Bouchiba

    I'm trying to stream my desktop (from an X11 session) to YouTube Live using ffmpeg. I'm running this on a Linux machine with an active X server, and I set the DISPLAY variable accordingly (:0 in most cases).

    &#xA;

    Here's the ffmpeg command I've tried :

    &#xA;

    ffmpeg -loglevel info \&#xA;    -probesize ${PROBESIZE} -analyzeduration ${ANALYZE_DURATION} \&#xA;    -f x11grab -video_size ${VIDEO_SIZE} -r ${FRAME_RATE} -draw_mouse 0 -i ${DISPLAY} \&#xA;    -f alsa -i default \&#xA;    -deinterlace -vcodec libx264 -pix_fmt yuv420p -preset fast \&#xA;    -r 30 -g 60 -b:v 2000k -bufsize 4000k \&#xA;    -acodec libmp3lame -ar 44100 -b:a 128k \&#xA;    -map 0:v:0 -map 1:a:0 -vsync 0 \&#xA;    -f flv "${RTMP_URL}" &amp;&#xA;

    &#xA;

    Environment variables are set correctly (DISPLAY, VIDEO_SIZE, FRAME_RATE, etc.), and I replaced $RTMP_URL with the correct YouTube RTMP endpoint (e.g., rtmp ://a.rtmp.youtube.com/live2/). But nothing seems to work — the stream never starts or appears on YouTube, and sometimes I get timeout or "connection refused" errors.

    &#xA;

    I've checked :

    &#xA;

    That I'm logged into an active X session

    &#xA;

    That I have access to the display (even tried xhost +)

    &#xA;

    That ffmpeg has access to ALSA (sound seems okay)

    &#xA;

    Questions :

    &#xA;

    Am I missing something in my command ?

    &#xA;

    Is there a better way to stream both screen and audio from an X server to YouTube Live ?

    &#xA;

    Could this be a codec or YouTube-specific format issue ?

    &#xA;

    Any help or working examples would be really appreciated. Thanks !

    &#xA;