
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (60)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (7709)
-
FFmpeg metadata tags for YouTube 3D side-by-side movies
17 février 2021, par Some1ElseYouTube requires specific metadata tags for 3D Side-By-Side format movies. If the tag is not there then YouTube does not give the anaglyph playback options for the end user.



Their "help" is here
https://support.google.com/youtube/answer/7278886?hl=en-GB



I am trying to get FFmpeg to add the MP4 tag when building my movie.



Code that works now for a series of PNG files into a MP4.



"ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y "OUTPUT.MP4"




But when I add the tag from the YouTube help page



"ffmpeg.exe" -framerate 60 -i "VID%05d.PNG" -c:v libx264 -preset:v veryslow -profile:v high -crf 15 -s 1280x720 -pix_fmt yuvj420p -an -y -x264opts "frame-packing=3:frame-packing-interpret=1:frame-packing-quincunx=0:frame-packing-grid=0,0,0,0" "OUTPUT.MP4"




I get this error from FFmpeg



[libx264 @ 0000000002a8c3a0] bad option 'frame-packing-interpret': '1'




This page (ignore the proselytising)



http://www.pantherdynamics.yolasite.com/panther-dynamics-blog/uploading-3dsbs-content-to-youtube



says you only need to use this tag



-x264opts frame-packing=3




Using that does make FFmpeg finish correctly, but the SBS is still ignored by YouTube



The YouTube engineer blog post here



https://youtube-eng.googleblog.com/2011/09/getting-3d-content-on-youtube_8.html



links to an older supposed 3D movie that also does not give 3D options any more.



https://www.youtube.com/watch?v=ubRHSg5daMs



So maybe even YouTube's own 3D movies are crippled ?



What am I doing wrong ? Any FFmpeg gurus able to help ?


-
Multi-Threaded Video Decoder Leaks Memory
3 janvier 2018, par CethricMy intention is to create a relatively simple video playback system to be used in a larger program that I am working on. Relevant code to the video decoder is here. The best I have been able to do so far is narrow down the memory leak to this section of code (or rather I have not noticed any memory leaks occurring when video is not used).
This is probably a very broad question how ever I am unsure of the scope of the issue I am having and as such of how to word my question.
What I want to know is what have I missed or done wrong that has lead to a noticeable memory leak (by noticeable I mean I can watch memory usage climb megabytes per minute). I have tried ensured that every allocation that I make is matched by a deallocation.
EDIT 1
This is to be built on a Windows 10 machine running MSYS2 (MinGW64) -
ffmpeg encoding with VP8 producing bad looking video
25 décembre 2017, par RaduI am working at a time lapse program that invokes ffmpeg via system() to encode a video from a sequence of JPGs. The user can chose a few options, including the compression codec.
I am getting very good results when using libx264 and the mjpeg encoder. I am getting so and so results with VP9, and I am getting some horrible results with VP8.I am invoking ffmpeg like so : ffmpeg.exe -framerate 12 -i "./output/img_%05d.jpg" -dst_range 1 -color_range 2 -c:v libvpx -b:v 0 -threads 8 -speed 2 -crf 8 "./output/video.webm"
I uploaded a sample to youtube : https://www.youtube.com/watch?v=eG2jxzR3Uxs (you can see the really bad frames after the 9 seconds mark.
Any idea what I am doing wrong ?