
Recherche avancée
Autres articles (8)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)
Sur d’autres sites (3997)
-
avcodec/mmvideo : Bounds check 2nd line of HHV Intra blocks
3 octobre 2014, par Michael Niedermayer -
Searching for a ffmpeg padding line which don't decrease the quality of the video
17 février 2024, par SeasonI'm trying to convert a 3840x1606 video into a 16:9 aspect ratio video with padding in top and bottom. Because casting it in tv makes it streachy. OR if you know any android app which takes care of that I will really appreciate that. I have a Samsung tv btw.


I tried this


ffmpeg -i input.mkv -vf pad="width=max(iw\,ih*(16/9)):height=ow/(16/9):x=(ow-iw)/2:y=(oh-ih)/2" output.mkv



This do the padding but the input file was 63 MB and output was around 17MB. until now only this line have worked.


Input video details : Video : hevc (Main 10), yuv420p10le(tv, bt2020nc/bt2020/smpte2084), 3840x1606 [SAR 1:1 DAR 1920:803], 23.98 fps, 23.98 tbr, 1k tbn (default)


Output video details : Video : h264 (High 10), yuv420p10le(tv, bt2020nc/bt2020/smpte2084, progressive), 3840x2160 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn (default)


And is there a way to do padding without encoding ?(is it even possible) or A way which takes less time.


-
Git log for the next change on a specific file line in a remote branch
20 juin 2022, par F. PetrulioI'm exploring the git history of the project FFMpeg. I got the changes performed on each file between the commits
517573a67088b5c7a25c18373434e3448892ee93
and80bb65fafab1d2f5f58a8453c6334c784ee27c08
by creating a patch with the command :

git diff 80bb65fafab1d2f5f58a8453c6334c784ee27c08..c5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8 -p > my.patch



Now, for instance, I know that the file
doc/examples/encode_video.c
has been modified at row149
and I would get the only the next commit afterc5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8
that modifies this line. Considering that some commits are on remotes, I'm using the command :

git log -L149,149: doc/examples/encode_video.c -1 c5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8..HEAD --remotes



but git returns the message :


fatal: More than one commit to dig from: origin/HEAD and HEAD?



I think the problem is that I'm trying to log a commit on a remote, not on the master branch, but it's just a speculation. How can I solve it ?