
Recherche avancée
Autres articles (59)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8746)
-
How can I capture youtube streams with ffmpeg
24 octobre 2016, par doğanI want save youtube stream with ffmpeg. Can anyone help me ?
-
Extract frames from live youtube stream
21 décembre 2022, par irmanI want to extract frames from a youtube live event, say one frame every 5 minutes, ideally without saving the stream to my local machine. Is there a simple way to do this, possibly a combination between
youtube-dl
andffmpeg
that I am not figuring out ? I found a similar question for UDP streams but don't know how to include the youtube stream : FFMPEG : extract a fram from a live stream once every 5 seconds


Thanks a lot in advance !


-
Why does Youtube player stretch MPEG1/2 video not H.264 ?
25 juin 2017, par MaruI want to upload the video on Youtube and I have this particular MKV file.
and I used ffmpeg to convert it to MP4 and hard code the ass subtitle into it.
Now my question is
When I simply tried converting the video without a sub and uploaded on Youtube,
so it retained its original vcodec.ffmpeg -i "input.mkv" -c:v copy -c:a aac "output.mp4"
The video (vcodec MPEG-1/2) is played with 16:9 ratio.
However, when I put a sub on it, so the video need to be re-encoded.
(In this case, I chose to preserve the quality by making it lossless.)ffmpeg -i "input.mkv" -preset veryslow -crf 0 -c:a aac -vf "ass=sub.ass" "output.mp4"
Now the subbed video has vcodec of H.264.
However, Youtube player keep its original aspect of 720x480 and there is a black bar on the side of the video.
Therefore, I am curious why is it such a case ? even though VLC told me that both has the same resolution of 720x480.
Furthermore, is there anyway I can adjust the aspect ratio on Youtube ?
I know that I can simply scale the video with ffmpeg,
but I was wondering if there is anyway I can tell Youtube to play the aspect ration that I want ? I think the formatting tags no longer works....