Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (80)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (10707)

  • avcodec/decode : Reset MMX state for receive_frame decoders, too

    14 mars 2023, par Andreas Rheinhardt
    avcodec/decode : Reset MMX state for receive_frame decoders, too
    

    FFmpeg's assembly code currently does not abide by the
    plattform-specific ABIs wrt its handling of the X86 MMX flag :
    Resetting the MMX state is deferred to avoid doing it multiple times
    instead of ensuring that the CPU is in floating point state
    upon return from any function.

    Furthermore, resetting said state is sometimes done generically,
    namely for all the decoders using the ordinary decode callback ;
    yet this is not done for the decoders using the receive_frame API.

    This led to problems when MJPEG (and the MJPEG-based decoders)
    were switched to the receive_frame API in commit
    e9a2a8777317d91af658f774c68442ac4aa726ec, because ff_mjpeg_decode_sos()
    only resets the MMX state on success, not on failure.
    Such issues are probably still possible with SMVJPEG, which still
    uses the receive_frame API. See issue #10210.

    This commit therefore also resets the MMX state for
    the receive_frame API to avoid any more surprises of this sort.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/decode.c
  • Ffmpeg command to most efficiently merge mp3 audio file and jpeg image file to a video file [closed]

    25 juin 2020, par Eugen

    I'm looking for an efficient way to merge a large .mp3 file and a single .jpg image to a video format for youtube. If I use :

    &#xA;&#xA;

    ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4&#xA;

    &#xA;&#xA;

    the result is very slow, especially for large .mp3 files. Is it possible to do it more efficiently with ffmpeg ? I know there must be a way to do it much more efficiently, like all the online converters are doing it.

    &#xA;

  • Ffmpeg command to efficiently merge mp3 audio file and jpeg image file to a video file

    9 juin 2020, par Eugen

    I'm looking for an efficient way to merge a large .mp3 file and a single .jpg image to a video format for youtube. If I use :

    &#xA;&#xA;

    ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4&#xA;

    &#xA;&#xA;

    the result is very slow, especially for large .mp3 files. Is it possible to do it more efficiently with ffmpeg ? I know there must be a way to do it much more efficiently, like all the online converters are doing it.

    &#xA;