Advanced search

Medias (91)

Other articles (106)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 February 2011, by

    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.

  • HTML5 audio and video support

    13 April 2011, by

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

On other websites (12645)

  • avcodec/cri: Check length

    5 July 2024, by Michael Niedermayer
    avcodec/cri: Check length
    

    Fixes: CID1604394 Overflowed constant

    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cri.c
  • If I kill ffmpeg command its video lenght is 5 seconds shorter then the actual length?

    7 May 2014, by 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 January 2024, by 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.

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;&#xA;

    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,

    &#xA;&#xA;

    &#xA;

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

    &#xA;

    &#xA;&#xA;

    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?

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;