Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (111)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11307)

  • How to output fragmented mp4 with ffmpeg ?

    12 octobre 2016, par S B

    ffmpeg -i infile.avi out.mp4 outputs non-fragmented MP4.

    How do I obtain fragmented mp4 ?

    Update
    A fragmented mp4 file is internally divided into several back-to-back chunks or MPEG-4 movie fragments. Each chunk has its own moof atom - so there are several moof atoms interleaved in the file instead of a single moov at the end as in the case of an unfragmented mp4. This makes it easier to stream over slow networks where buffering is involved

    There are several tools like mp4box that convert a normal mp4 to a fragmented one. Unfortunately we cannot use something like this

    ffmpeg <options to="to" output="output" mp4="mp4"> | mp4box
    </options>

    since ffmpeg does not produce seekable output while producing mp4 containers.

  • image -> video -> image not lossless using avconv

    15 décembre 2015, par nrob

    I’m trying to test the amount of information lost with some different video codecs. I’ve got a python script which uses PyPNG to write a series of 8 bit RGB images. I then encode it using avconv, for instance

    avconv -r 1 -i ../frames/data%03d.png -c:v ffv1 -qscale:v 0 -r 1

    outffv1.avi

    I then decode this back into pngs like so

    avconv -r 1 -i outffv1.avi -r 1 ./outffv1/frame%03d.png

    But when I compare the images before and after the video compression, they are different (mean absolute error of 15%). The thing that is confusing me is that this is true (give or take) independent of the codec.

    For instance, I get similar answers for libtheora for a range of qscale values.

    The png encoding i.e. write to png, and immediately load back in without and video compression step, is lossless.

  • ffmpeg reverts audio volume even after removing the audio track

    7 avril 2023, par DniweTamp

    I tried making a simple batch file that separates and normalizes audio track, and merges it with the reencoded video track afterwards, but whenever I try to add the edited audio track back the volume just goes back to the original level.

    &#xA;

    It happens specifically when I try to add the audio back to video, the volume level stays normalized if I reencode said audio to .aac or .ogg files, but when I try to add it to the video, even using -c:a copy, the volume just reverts to the original level

    &#xA;

    Below is an image that shows the volume levels of audio tracks

    &#xA;

    I detach audio, normalize it (result is top track), add it back to the video, and it becomes what's on the bottom (which is also the same volume as the original video's audio)&#xA;Normalized and quiet volume levels

    &#xA;

    Here's the contents of my batch file, expected result was a reencoded video, with normalized audio

    &#xA;

    I tried removing audio track with both -an and -map 0 -map -0:a, same result

    &#xA;

    I can confirm that the normalize program does its job correctly, by checking volume levels in audacity

    &#xA;

    ffmpeg -i %1 -y temp.wav&#xA;normalize.exe temp.wav&#xA;ffmpeg -i %1 -c:v libx264 -map 0 -map -0:a -profile:v main -pix_fmt yuv420p -movflags &#x2B;faststart -preset medium -crf 22 -map_metadata -1 -y video.temp.mp4&#xA;ffmpeg -i %1 -i temp.wav -c:v copy -y video.h264.mp4&#xA;del temp.wav&#xA;del video.temp.mp4&#xA;

    &#xA;

    Edit : and here's the video file I tried this on.

    &#xA;