Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (97)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (9900)

  • Howto extract blackframes and volumes info from video at the same time with ffmpeg/ffprobe

    3 novembre 2019, par Alexander Kislitsky

    I’m extracting astats info with :

    ffprobe -f lavfi -i "amovie=video.flv,astats=metadata=1:reset=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json

    Blackframes info with :

    ffprobe -f lavfi -i "movie=video.flv,blackframe=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json

    But when I’m trying to combine filters like this :

    ffprobe -f lavfi -i "amovie=video.flv,astats=metadata=1:reset=1;movie=video.flv,blackframe=1" -show_entries frame=pkt_pts_time:frame_tags -print_format json

    I’ve the following error : Invalid filterchain containing an unlabelled output pad : "astats=metadata=1:reset=1 ;movie=video.flv,blackframe=1"

    How to combine output of two filters in a single json file ?

  • Shifting audio in MPEG4 content and manipulating atoms

    10 janvier 2018, par LLL

    1. Shift audio

    I use ffmpeg / avconv quite often ... and usually I hate it.
    Those tools do what they are instructed to do about 30% of the time. I could give you countless examples but I don’t want to start flame war, so please help me with my current problem (really easy one).

    I wanted to shift audio (content is standard mp4 file with aac and h264 tracks), so I have found a "highly upvoted" solution :

    https://superuser.com/a/983153/758887

    the only problem with it is that it doesn’t work. I downloaded latest stable ffmpeg (even on windows as in the thread, so it’s version was 3.4.1) and executed command without changing literaly anything :

    ffmpeg.exe -i "movie.mp4" -itsoffset 3.84 -i "movie.mp4" -map 0:v -map 1:a -vcodec copy -acodec copy "movie-audio-delayed.mp4"

    Result was no shift (I expected audio to be 3.84s late).

    2. Remove MPEG4 atoms

    I would be also grateful if you could recommend some tool for removing MPEG4 boxes from content. For examining MPEG4 content I use MP4 Explorer / Codec Visa (limited) on Windows and AtomicParsley on Linux, however they only print atoms and I would like to edit / remove them. For example MP4Box can remove whole moov->track with "-rem" option but what if I would like to remove moov->track->edts only ?

  • Strange error [adding watermark to flv video with ffmpeg on linux centos 6]

    20 juillet 2012, par igor

    I have tried to do the job with following code :

    ffmpeg -i /home/igordr/video.flv -vf "movie=/home/igordr/wm.jpg [watermark]; [in][watermark] overlay=main_w/2-overlay_w/2:main_h/2-overlay_h/2 [out]" /home/igordr/outputvideo.flv

    Also tried :

    ffmpeg -i /home/igordr/video.flv -b:a 300k -ar 22050 -t 10 -f flv -s 352x288 -vf "movie = /home/igordr/wm.png [watermark]; [in][watermark] overlay =0:0 [out]" /home/igordr/out.flv

    I get errors :

    Unrecognized option 'vf'

    Unrecognized option 'b:a'

    Also, I am interested, how I can add just one big image, before video starts, without watermark, and does it possible ?

    How can i check ffmpeg version, and install new one if it's old ?