Recherche avancée

Médias (91)

Autres articles (87)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

Sur d’autres sites (11876)

  • avcodec/libx265 : add support for setting chroma sample location

    29 août 2021, par Jan Ekström
    avcodec/libx265 : add support for setting chroma sample location
    

    Unlike libx264, libx265 does not handle the chroma format check
    on its own side, so in order to not write out values which are
    supposed to be ignored according to the specification, we limit
    the writing out of chroma sample location to 4:2:0 only.

    • [DH] libavcodec/libx265.c
  • hevc : Fix 4K sample video

    14 juin 2014, par Kieran
    hevc : Fix 4K sample video
    

    Reviewed-by : smarter
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/hevc_ps.c
  • ffmpeg disconnects with different audio sample rate

    11 juillet 2017, par HRG

    Am using ffmpeg transcoder tool to convert a streaming audio input to another format.The raw audio data comes from a input device in wav format (.wmv) which can be accessed via server port (ex.8080) . The audio format is in wav with 16bits/sample and sample rate of 6000 hz.
    When I use ffmpeg to read this audio input with above specs and convert to another format it works fine.

    Ex.
    ffmpeg -f s16le -ar 6000 -ac 1 -i http://local:8080/sampleaudio.wmv -f webm out.webm

    But if i use fmmpeg to read the audio input at sample rate of 4000hz (other than the actual rate) ,it disconnects from the server always .

    Ex.
    ffmpeg -f s16le -ar 4000 -ac 1 -i http://local:8080/sampleaudio.wmv -f webm out.webm

    The error in the ffmpeg console is "Stream ends prematurely at 194604, should be 4800044"

    I know the input rate at which ffmpeg is reading and the actual audio output is different .But am curious to know

    why ffmpeg is disconnecting from the server ,what is happening behind the scene.

    Also how to enable logs for network connections(http,sockets..)

    Thanks