Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (11)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

Sur d’autres sites (4773)

  • combining MP4 video files while adding text overlay with ffmpeg

    25 septembre 2014, par valnox

    Here is a shameless request for someone to give me the required FFmpeg command. I spent way too long messing around with VLC trying to do this, and after it repeatedly messed up (mainly with video length and mp4a codecs), I started looking for other options. Now I’m coming up on a deadline and don’t have the time to go through all of the FFmpeg documentation right now.

    So, if someone is willing to help me, here is what I need :

    Take 2+ videos, combine them, add two text overlays in top left and bottom right corners (white text, black outline), and change the output bitrate (from 20k to 8k). I can easily programmatically create the list.txt of file names needed.

    Researching showed me that I likely need the "concat" and "drawtext" commands. The computer is Windows 7.

    Thanks in advance to anyone even reading this, let alone responding. Sorry to come in so ignorant, but, well... three days trying to get VLC to do it :(

  • ffmpeg freezes system I/O [closed]

    28 août 2022, par dorforer

    I'm trying to save an RTSP stream on a server computer (on an up-board) to my local disk using FFmpeg.
This is the command I'm using :

    


    ffmpeg -loglevel quiet -xerror -fflags +igndts -rtsp_transport tcp -i rtsp://127.0.0.1:8554/test -avoid_negative_ts 1 -r 15 -c copy -f segment -segment_time 20 -segment_wrap 3 -reset_timestamps 1 $FILE_NAME


    


    The problem is after a while (it can take even 2 days), the system freezes with what seems like an IOWait problem, and there's nothing I can do (not even connecting via SSH) but hard restart the server.

    


    It happens randomly, and I can't reproduce it using a stress test for example.
It only happens with FFmpeg running.
I'm using ubuntu 16 and FFmpeg 2 but also tried it on FFmpeg 4 on Ubuntu 16.
Is there maybe a way to monitor it ?

    


    Thank you.

    


  • FFMPEG command issue for merging mp4 videos in android

    7 septembre 2018, par DJtiwari

    I am using following FFMPEG command for merging mp4 videos in android. But video is rotated 90 degree after merging.

    I am stuck from two days .If any idea it would be highly appriciated.

    Thanks in Advance !

    complexCommand = new String[] {
                   "ffmpeg",
                   "-y",
                   "-i",
                   recordpath + "Vid1.mp4",
                   "-i",
                   recordpath + "Vid2.mp4",
                   "-strict",
                   "experimental",
                   "-filter_complex",
                   "[0:v]scale=w=640:h=480[v1]; [1:v]scale=w=640:h=480[v2]; [v1][0:a][v2][1:a] concat=n=2:v=1:a=1 [v] [a]",
                   "-map", "[v]", "-map", "[a]", "-b", "2097k", "-vcodec",
                   "mpeg4","-ab","64k","-ac","2","-ar","22050", recordpath + "Outputnew.mp4"};