Recherche avancée

Médias (91)

Autres articles (61)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10354)

  • If I kill ffmpeg command its video lenght is 5 seconds shorter then the actual length ?

    7 mai 2014, par Sumit Jasuja

    I am using ffmpeg to capture screen. output is in mp4 format. when I kill ffmpeg command its video length is 5 seconds shorter then the actual length.

    Process killed using following code :

    foreach (Process pr in Process.GetProcessesByName("ffmpeg"))
    {
       pr.Kill();
    }
  • ffmpeg modify audio length/size ( stretch or shrink)

    24 janvier 2024, par mido

    I am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.

    



    my problem is if the recording is for one hour, after merging the chunks

    



    video length : 1:00:00 , audio length : 00:59:30,

    



    now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,

    



    


    I find that it is progressive sync issue where it gets worse and worse as time increases.

    


    



    I have searched the net for the solution, most places say async, I have tried using it, but to no avail, is the below usage correct ?

    



    ffmpeg  -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4

    



    (v.mp4 is the final file that I provide to the users.)

    


  • ffmpeg modify audio length/size ( stretch or shrink)

    14 juin 2016, par mido

    I am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.

    my problem is if the recording is for one hour, after merging the chunks

    video length : 1:00:00 , audio length : 00:59:30,

    now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,

    I find that it is progressive sync issue where it gets worse and worse as time increases.

    I have searched the net for the solution, most places say async, I have tried using it, but to no avail, is the below usage correct ?

    ffmpeg  -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4

    (v.mp4 is the final file that I provide to the users.)