
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (54)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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 (9290)
-
How to use ffmpeg to encode isolated motion vectors (using codecview)
22 juillet 2021, par TemmehI have been successfully using this command to superimpose MPEG motion vectors onto a video :


ffmpeg -v error -flags2 +export_mvs -i input.mp4 -vf codecview=mv=pf+bf+bb -y output.mp4


Now I would like to be able to export an h264 mp4 of just the motion vector arrows, like in this example, without the original video layered underneath. I checked the codecview documentation and and did not find a flag or option to do this.


Any help is appreciated !


-
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 ?


-
Revision 60456083e9 : Do joint motion search iteratively Allow motion search multiple times iterative
11 mai 2013, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Do joint motion search iterativelyAllow motion search multiple times iteratively, and break out
the loop if this search couldn't find better motion vectors.
Limit the maximum number of search to 2.Tests results :
1. stdhd set : 0.311%(overall psnr) ; 0.346%(ssim).
positive gain on 10 out of 16 clips(best : 2.746% on sunflower ;
worst : -0.434% on old_town_cross).
2. derf set : 0.016%(overall psnr) ; 0.062%(ssim).
positive gain on half of the clips(best : 0.499% on bowing ;
worst : -0.387 on city).Change-Id : Ibf0a51776d4caf7707be0586346db08128117559