Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (54)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3689)

  • av_interleaved_write_frame() : Connection reset by peer youtube.

    16 février 2019, par Hasan

    i want to live stream to youtube with ffmpeg but i take error " av_interleaved_write_frame() : Connection reset by peer". i send stream with FMLE its works nice.

    ffmpeg -re -i /mnt/windows/21.mpg -r 30 -s 854x480 -c:v libx264 -c:a libfdk_aac -f mpegts "rtmp://a.rtmp.youtube.com/live2/hasanbagcaci.3s3v-pkwx-g64b-5zgz" -force_key_frames "expr:gte(t,n_forced*1)"

    thanks for helping

  • How to update tags on youtube stream through API which is streamed though FFMPEG

    6 décembre 2018, par Anirudha Gupta

    I am using FFMPEG to stream the video on youtube, I have certain text and tag that must be set as description of stream video. How this can be done in youtube data v3.

    Will getting list of video and update the latest one’s tag and text is a good idea. Is there a way I can send tag through FFMPEG command.

  • FFmpeg - How should I do to convince YouTube that it is receiving "endless" video stream ?

    16 octobre 2017, par K._

    I’m using FFmpeg and Youtube Live Streaming API to live-stream videos to YouTube.

    I made something generates video files continuously,
    and I want to live-stream them to YouTube without any delay.

    To feed them to YouTube’s RTMPT(rtmp ://a.../live2/...) server,
    I tried several things :

    1. Just while:; do ./ffmpeg ... rtmp://...; done.
    2. Piping

    YouTube streamed them continuously, but not seamlessly.
    It showed Buffering icon for about 20 seconds (as if a new YouTube stream gets created and starts to be fed), about 5 seconds before the currently showing video ends and the next video get showed.

    | ...===============(BUFFERING)===== | ...===============(BUFFERING)===== | ...

    It seems that YouTube just stops the stream when it detects the end of a video.
    How should I do to convince YouTube that it is receiving "endless" video stream ?