Recherche avancée

Médias (91)

Autres articles (44)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • FFMPEG how to record aac codec audio same time with video ?

    13 décembre 2017, par Gomi Odabaşıoğlu

    I am trying to use FFMPEG console tools effectively. Now I can record video and audio same time but my issue audio is delaying. I use following code :

    C:\Users\gomid_000\Desktop\ffmpeg.exe -y -f dshow -i audio="Stereo Mix (Realtek High Definition Audio)" -f gdigrab -show_region 1 -framerate 60 -i desktop -map 0 -map 1 -c:v libx264 -preset ultrafast -pix_fmt yuv420p C:\Users\gomid_000\Desktop\out.mp4 -threads:1 4

    I want to use h264 - Intel quick sync codec for video and for the audio
    AAC codec My machine accepts it.

    I tried to use Intel QSV with following code, is that correct ? (scroll "-c:v h264_qsv" part of the code)

    C:\Users\gomid_000\Desktop\ffmpeg.exe -y -f dshow -i audio="Stereo Mix (Realtek High Definition Audio)" -f gdigrab -show_region 1 -framerate 60 -i desktop -map 0 -map 1 -c:v h264_qsv -pix_fmt yuv420p C:\Users\gomid_000\Desktop\out.mp4

    Still do not know How to use AAC to record audio and keeep video and audio matching times automaticly. It is not installed maybe (?) (I do not know how to tell this in English will try :"Person speaks but audio comes very near but delays a little bit when I try bandicam they just match each other without any delay this is not hardware related.")

  • ffmpeg : Crop webm file with circular .png mask [closed]

    26 mars 2021, par Beneos Battlemaps

    I tried everything for hours and can get it working by myself. I want to create animated Pen&Paper tokens for virtuale tabletops. I have a .webm video file with 720x720 pixel showing an animation of a render file created out of a png sequence via

    


    ffmpeg -framerate 24 -f image2 -i face.%04d.png -c:v libvpx-vp9 -pix_fmt yuva420p face1.mp4

    


    See here : https://webmshare.com/play/ZxZa0

    


    Now i want to overlay this .webm with an circle image as frame :

    


    overlay

    


    and crop the black part so its transparent in the end result as well as keeping the transparent area in the center for the video itself.

    


    So the endresult is from this :

    


    Face1

    


    to this :

    


    Face2

    


    Can you help me out with that ? If its easier i can split the steps, making first the alpha mask crop via png and adding the circle in it later.

    


    Beste regards in advance
-Ben

    


  • Mute parts of Wave file using Python/FFMPEG/Pydub

    20 avril 2020, par Adil Azeem

    I am new to Python, please bear with me. I have been able to get so far with the help of Google/StackOverflow and youtube :). So I have a long (2 hours) *.wav file. I want to mute certain parts of that file. I have all of those [start], [stop] timestamps in the "Timestamps.txt" file in seconds. Like this :

    



       0001.000 0003.000
   0744.096 0747.096
   0749.003 0750.653
   0750.934 0753.170
   0753.210 0754.990
   0756.075 0759.075
   0760.096 0763.096
   0810.016 0811.016
   0815.849 0816.849


    



    What I have been able to do is read the file and isolate each tuple. I have just output the first tuple and printed it to check if everything looks good. It seems that the isolation of tuple works :) I plan to count the number of tuples (which is 674 in this case) and put in a 'for loop' according to that count and change the start and stop time according to the tuple. Perform the loop on that single *.wav file and output on file with muted sections as the timestamps. I have no idea how to implement my thinking with FFMPEG or any other utility in Python e.g pydub. Please help me.

    



       with open('Timestamps.txt') as f:
   data = [line.split() for line in f.readlines()]
   out = [(float(k), float(v)) for k, v in data]

   r = out[0] 
   x= r[0]
   y= r[1]
   #specific x and y values
   print(x)
   print(y)