Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (8)

  • Other interesting software

    13 avril 2011, par

    We 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, par

    Le 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, par

    Le 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
    avcodec/mmvideo : Bounds check 2nd line of HHV Intra blocks
    

    Fixes out of array access
    Fixes : asan_heap-oob_4da4f3_8_asan_heap-oob_4da4f3_419_scene1a.mm

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/mmvideo.c
  • Searching for a ffmpeg padding line which don't decrease the quality of the video

    17 février 2024, par Season

    I'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.

    &#xA;

    I tried this

    &#xA;

    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&#xA;

    &#xA;

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

    &#xA;

    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)

    &#xA;

    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)

    &#xA;

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

    &#xA;

  • Git log for the next change on a specific file line in a remote branch

    20 juin 2022, par F. Petrulio

    I'm exploring the git history of the project FFMpeg. I got the changes performed on each file between the commits 517573a67088b5c7a25c18373434e3448892ee93 and 80bb65fafab1d2f5f58a8453c6334c784ee27c08 by creating a patch with the command :

    &#xA;

    git diff 80bb65fafab1d2f5f58a8453c6334c784ee27c08..c5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8 -p > my.patch&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

    but git returns the message :

    &#xA;

    fatal: More than one commit to dig from: origin/HEAD and HEAD?&#xA;

    &#xA;

    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 ?

    &#xA;