Recherche avancée

Médias (91)

Autres articles (107)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • 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 (7772)

  • How to convert mp4 to h264 adding AUDs using FFMPEG

    16 mars 2021, par syntheticgio

    I am trying to convert an mp4 clip to h264 bytestream format using FFMPEG. I have successfully compiled FFMPEG from source with access to libx264.

    



    Looking at the documentation for FFMPEG (version 3.2.2) under libx264 there is a bool flag -aud. In the online documentation it gives the example

    



    ffmpeg -i input.flac -id3v2_version 3 out.mp3


    



    Using this format, the following command works, but doesn't produce the desired AUDs in the output file :

    



    ffmpeg -i input.mp4 -codec:v libx264 -aud 1 output.h264


    



    I've also tried different variants with this including :

    



    ffmpeg -i input.mp4 -vcodec libx264 -aud 1 output.h264
ffmpeg -i input.mp4 -aud 1 output.h264


    



    etc.

    



    I assume there is something I'm misunderstanding about performing this operation. I basically want to take a h264 movie in an mp4 container and dump it as an h264 stream with AUDs added to it. Any idea why this isn't working ?

    



    (I've also tried using x264 with the -aud flag, also ran fine but didn't produce the desired output).

    


  • How to convert mp4 to h264 adding AUDs using FFMPEG

    30 décembre 2016, par SyntheticGio

    I am trying to convert an mp4 clip to h264 bytestream format using FFMPEG. I have successfully compiled FFMPEG from source with access to libx264.

    Looking at the documentation for FFMPEG (version 3.2.2) under libx264 there is a bool flag -aud. In the online documentation it gives the example

    ffmpeg -i input.flac -id3v2_version 3 out.mp3

    Using this format, the following command works, but doesn’t produce the desired AUDs in the output file :

    ffmpeg -i input.mp4 -codec:v libx264 -aud 1 output.h264

    I’ve also tried different variants with this including :

    ffmpeg -i input.mp4 -vcodec libx264 -aud 1 output.h264
    ffmpeg -i input.mp4 -aud 1 output.h264

    etc.

    I assume there is something I’m misunderstanding about performing this operation. I basically want to take a h264 movie in an mp4 container and dump it as an h264 stream with AUDs added to it. Any idea why this isn’t working ?

    (I’ve also tried using x264 with the -aud flag, also ran fine but didn’t produce the desired output).

  • matroskadec : partly revert "demux relevant subtitle packets after a seek"

    26 novembre 2016, par Rainer Hochecker
    matroskadec : partly revert "demux relevant subtitle packets after a seek"
    

    This reverts parts of c16582579b1c6f66a86615c5808cd5b2bf17be73. The hard
    coded 30 seconds are a lot, and finishing the seek can takes several
    seconds when the source is on a network share. Remove this code
    entirely, because it does more bad than good.

    (Commit message provided by committer, based on the original messages
    by the patch author.)

    Signed-off-by : Rainer Hochecker <fernetmenta@online.de>
    Signed-off-by : wm4 <nfxjfg@googlemail.com>

    • [DH] libavformat/matroskadec.c