Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (32)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (4927)

  • ffmpeg : How to limit bit rate of video output ?

    27 mars 2017, par Mat

    To a 2GB raw video file taken in front of a greenscreen I want to add the alpha channel.

    My problem is : the output files appear much too large to me (about 20-fold the size of the input), and OpenShot, the video editor, seems unable to handle such huge files. Comparing file properties of input and output shows bitrates of about 15k in the infiles, and 150k-250k in the result files, which seems to pinpoint the problem.

    (By the way, I also want to discard the first part of the clip as well as its audio channel and reduce the frame rate from 30 to 24 fps in the process, which all works fine.)

    This is my command :

    ffmpeg.exe -i  -vf chromakey=0x007d06:0.15:0.0 -ss 40.420 -r 24 -b:v 15840k -maxrate 15840k -bufsize 15840k -an -c:v <encoder>
    </encoder>

    The parameters as I understand them :

    -i  ... infile
    -vf chromakey=0x007d06:0.15:0.0 ... chroma, tolerance &amp; blend of greenscreens
    -ss 40.420 ... skip before second 40.420 (this works)
    -r 24 ... frame rate (this works, too)
    -b:v 15804k ... bitrate (seemingly no effect)
    -maxrate 15840k ... maximum BitRate (seemingly no effect)
    -bufzise 15840k ... Buffer size (can't tell)
    -an ... no audio channel (works fine)
    -c:v <encoder> ... Video Encoder (ffvhuff, png, qtrle and tiff were tried, all to the same result)
    ... outfile
    </encoder>

    b, maxrate and bufsize are described as global options. No matter what setting, during the process bitrates of up to some 3000000kbits/s (tiff) are reported.

    (I also added -pixel_format argb, but this, too, seemed to be ignored, ffmpeg always reports to write yuva420p.)

    What am I missing ?

  • Livestream screen capture to frontend website with low latency [closed]

    3 juin 2021, par Eddie Huang

    for a project I want to livestream my desktop on my Ubuntu server onto the frontend website (running on the same server using Node/Express).

    &#xA;

    It would be the same effect as livestreaming with OBS/ffmpeg to Youtube/Twitch and embedding into my own website.&#xA;It has to be low latency (<1 second)

    &#xA;

    Could anyone point me in what protocols/applications/tutorials to use as an outline ?

    &#xA;

  • FFMPEG is not recording the whole window

    25 mai 2021, par John

    I'm using FFMPEG to record a window as illustrated in the figure below. In all cases, the right hand side of the recorded window is cropped. The command I'm giving is

    &#xA;&#xA;

    ffmpeg -f gdigrab -i title="example.txt - Notepad&#x2B;&#x2B;" output.mkv&#xA;

    &#xA;&#xA;

    Any suggestion on how to fix this problem is much appreciated.

    &#xA;&#xA;

    Using FFMPEG to record a window

    &#xA;&#xA;

    Here are some additional info :

    &#xA;&#xA;

      &#xA;
    • Running Windows 10
    • &#xA;

    • Using ffmpeg-20181215-011c911-win64-static, but I have the same issue using other versions of FFMPEG
    • &#xA;

    • Desktop resolution is 3200x1800 (dpi scaling issue ?)
    • &#xA;

    &#xA;&#xA;

    This is what the recorded area looks like in the example above

    &#xA;&#xA;

    FFMPEG cropping right hand side of window

    &#xA;&#xA;

    Update 1 :

    &#xA;&#xA;

    Recording the whole desktop works fine, however, when recording a region using x and y offsets, the region captured is correct, but the region indicated is wrong. I illustrate this in the image below that shows a screen capture of the desktop during recording. The background image is a grid and the taskbar has been hidden.

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    The size of the area to capture is specified to 1280x720, but the region indicated is 1600x900. Also, the x offset is specified to 400px, but the region indicted starts at 500px.

    &#xA;&#xA;

    The area recorded is correct ! The image below shows a screenshot of the recording during playback in vlc, note that the "misplaced" region indicator can be seen

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Update 2 :

    &#xA;&#xA;

    I noticed that the cursor, the mouse, is not correctly placed when capturing from the desktop, see recording below. Everything looks fine during recording, but at playback the cursor is misplaced.

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    The command issued for the recording above was :

    &#xA;&#xA;

    ffmpeg -f gdigrab -framerate 30 -offset_x 1820 -offset_y 100 -video_size 1280x720 -i desktop output5.mkv&#xA;

    &#xA;&#xA;

    Windows 10 / ffmpeg-20181215-011c911-win64-static

    &#xA;