Recherche avancée

Médias (91)

Autres articles (102)

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

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (13204)

  • ffmpeg concat best codec

    30 novembre 2014, par AnaetechEng

    I have been trying to get ffmpeg to format variously formatted files to 640x480 and 25fps, mp3 192k and concatenate the resulting file between a leader and trailer for projected display. My scripts appear to work with mp4 files of 25fps but not 24fps - this may be coincidence. ffmpeg concat gives the Non-monotonous DTS in output stream error.

    Apparently for concat to work the videos must be of the same format (the leader and trailer are produced with the same ffmpeg arguments). Can anyone show me how I can set the libx264 codec to produce compatible videos since size, fps and audio bps are not enough ? Or suggest an alternative to libx264 or mp4 to increase the chance of successful concatenation.

    The three intermediate files all work fine but the concatenated video just silently skips through.

  • avfilter/af_dynaudnorm : fix another clipping with custom peak value

    4 janvier 2020, par Paul B Mahol
    avfilter/af_dynaudnorm : fix another clipping with custom peak value
    

    This always happened at start with alternative boundary mode disabled.
    The clipping only occurred if starting samples where high enough.

    • [DH] libavfilter/af_dynaudnorm.c
  • R "only" substitute of the av package to split and convert an mp4 into multiple mp3 [closed]

    9 février 2024, par Bakaburg

    I am developing an R package that requires splitting an mp4 file into multiple segments and converting these segments into mp3 format. Currently, I use the av package for this task. However, av depends on the external ffmpeg tool, necessitating separate installation. This dependency complicates the setup for non-expert users of my package.

    


    I am seeking an alternative approach that either uses only R or incorporates a low-level solution directly within the package, eliminating the need for external tool installations. The goal is to streamline the user experience by minimizing setup complexity.

    


    Does anyone know of such a solution or approach that can substitute the functionality provided by av without external dependencies ?