Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (62)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9123)

  • aacenc : reorder resetting of cpe->common_window

    1er septembre 2015, par Rostislav Pehlivanov
    aacenc : reorder resetting of cpe->common_window
    

    Purely a cosmetic change, most of the zeroing of encoder resources
    should happen at the top of the main loop.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc.c
  • Revision 360c80cfb9 : Use fast HEX search in real time mode In good quality mode motion search, the b

    15 février 2014, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_mcomp.h


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_rdopt.c



    Use fast HEX search in real time mode

    In good quality mode motion search, the best matches are normally
    found after searching in a large area. In real time mode, to make
    encoding fast, a center-biased fast HEX search is used, which
    converges quickly most of the time. A 4-point diamond search is
    also carried out as the following refining search, which gives more
    precise results, and maintains good motion search quality.

    At speed 5, the borg test on rtc set showed an overall PSNR loss of
    0.936%. The encoding speed gain is 4% - 5%.

    Change-Id : I42cd68bb56a09ca1b86293c99d5f7312225ca7ae

  • How to split multiple videos 2.24 seconds before the end

    15 décembre 2019, par Leendert

    I have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.

    I want to keep both parts of the video after the split.

    So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
    It will put the new videos inside of a folder called ’new files’.
    The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.

    for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause