Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (89)

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

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

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

  • avcodec/cri : Check length

    5 juillet 2024, par 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 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.

    &#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;