Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (48)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (8970)

  • Revision 09faceb706 : Fix 2x scaling bug Reported by Alexander Voronov Change-Id : I463ba323cc9f4e345

    12 septembre 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_reconinter.c



    Fix 2x scaling bug

    Reported by Alexander Voronov

    Change-Id : I463ba323cc9f4e345b7e6f759565725737793086

  • gdigrab : grab right desktop size if DPI in use, based on patch from Alexander Brotzge

    5 octobre 2015, par Matt Oliver
    gdigrab : grab right desktop size if DPI in use, based on patch from Alexander Brotzge
    

    Signed-off-by : Matt Oliver <protogonoi@gmail.com>

    • [DH] libavdevice/gdigrab.c
  • ffmpeg adding a lot of time when concatenating files

    27 novembre 2023, par Jovi Juan

    I'm not sure if this will help anyone else, but I was trying to concatenate some files made in Premiere (problem #1) and ffmpeg kept adding time or changing the timeframe, about an hour for a 37 minute file) which was really frustrating.

    &#xA;

    I essentially was adding a new credit sequence onto the end and wanted to do it without rerendering any of the sourcefiles which in Premiere takes an amazing 8 hours at 4k and often fails or drops audio or video for no apparent reason.

    &#xA;

    I tried many many things, but what turned out to be the problem was the timescale, which by using ffprobe, turned out to be two subtly different timescales. Arrrgh. Same program (Premiere), same project.

    &#xA;

    Anyway the probe results were :&#xA;codec_name=h264&#xA;r_frame_rate=2997/100

    &#xA;

    And the other&#xA;codec_name=h264&#xA;r_frame_rate=30000/1001

    &#xA;

    So I fixed both of them by running it through this script

    &#xA;

    ffmpeg -i original.mp4 -c copy -video_track_timescale 30000 output.mp4&#xA;

    &#xA;

    where original and output were the respective filenames.

    &#xA;

    When I ran the concatenation script, it worked !&#xA;files.txt :

    &#xA;

    file &#x27;output.mp4&#x27;&#xA;file &#x27;output2.mp4&#x27;&#xA;

    &#xA;

    ffmpeg -f concat -i files.txt -c copy concat-movie.mp4&#xA;

    &#xA;

    I can only think that Premiere/Adobe is sneakily doing this to files to make such operations in other programs difficult and frustrating. I even made a sequence using the same files and regenerating the credit sequence from there to ensure the timescales and framerates were the same and it still generated files that were different.

    &#xA;

    Anyway, that was like a day of work. Hope this saves others the same hassle.

    &#xA;