Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (111)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (3304)

  • avformat/matroskadec : Move WEBVTT code to mkv_parse_subtitle_codec()

    3 septembre 2023, par Andreas Rheinhardt
    avformat/matroskadec : Move WEBVTT code to mkv_parse_subtitle_codec()
    

    and also perform the remainder of the subtitle parsing directly
    after mkv_parse_subtitle_codec().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/matroskadec.c
  • Output image twice in ffplay

    2 mai 2024, par Sun Tzun

    I need to show two similar images from a webcam side-by-side.&#xA;I can achieve this with this piped command, but it runs with a few seconds latency :

    &#xA;

    ffmpeg -f dshow -i video="Logi C310 HD WebCam" -filter_complex "[0:v][0:v]hstack=inputs=2[v]" -map "[v]" -f matroska - | ffplay -&#xA;

    &#xA;

    I'd prefer to do the same in just ffplay.

    &#xA;

    I'd also like to have the resulting image cropped to a square size or to the size of the original image (like if the picture from webcam gets divided by half and the halfs took each other places).

    &#xA;

    What I need in this end is a tool that helps to align the camera parallelly to the captured object, so any wrong angle would be perfectly visible on video if two opposite sides of the picture are placed alongside.

    &#xA;

    PS. My platform is Windows 11.

    &#xA;

  • MPEG DASH SRD : How to properly re-assemble multiple tiles into a single tile [closed]

    21 juin 2024, par ATrashInTheWorld

    I am trying to build a web player that is able to stream MPEG DASH, but with SRD information in the manifest. I have a problem at the "gluing" of the tiles part.

    &#xA;

    How the data is set :

    &#xA;

    I have a video of a resolution of XxY, which I've divided in tiles of NxM, meaning that I now have the NxM videos of the same duration as the original one, but which is reduced to a smaller resolution, a portion from the original (seeing only the upper left corner for example).

    &#xA;

    I have fragmented those tiles for the MPEG DASH streaming format, meaning an init.mp4 and the m4s fragments for each tile. To note that I have the tiles in multiple bitrate, in order to imitate some adaptive streaming.

    &#xA;

    The "gluing" part :

    &#xA;

    The gluing part consists of gluing the tile togheter into 1 big tile, aka the original video. The SRD information allows me to know where each tile should be position to reconstruct the original video shape. Once I have the spatial information from the manifest, I use this command to glue the tiles togheter :

    &#xA;

    ffmpeg.exe -i v1 -i v2 -i v3 -i .v4 -i v5 -i v6 -i v7 -i v8 -i v9 -filter_complex "[0:v][1:v][2:v][3:v][4:v][5:v][6:v][7:v][8:v]xstack=inputs=9:layout=0_0|w0_0|w0&#x2B;w1_0|0_h0|w3_h0|w3&#x2B;w4_h0|0_h0&#x2B;h3|w6_h0&#x2B;h3|w6&#x2B;w7_h0&#x2B;h3" out.mp4&#xA;

    &#xA;

    The command above allows me to "glue" together tiles from a grid of 3x3 tiles, into 1 big tile.

    &#xA;

    The web streaming method :

    &#xA;

    To stream, I use JavaScript MediaSource, and I am appending the fragments to the buffer continuously, like this reference

    &#xA;

    The issue :

    &#xA;

    The issue is that the FFMPEG gluing command only works on proper mp4 videos, not with fragments (m4s). I cannot glue the wanted m4s tiles back into a bigger one. However, the JavaScript player only takes fragments, meaning that I cannot just send continuous mp4 video.

    &#xA;

    I have tried many things with fragments and full videos, but the only solution I found for this chicken-egg problem is to :

    &#xA;

      &#xA;
    1. Create video clips with smaller duration for each tile, at each bitrate.
    2. &#xA;

    3. Glue the desired video clips tiles together with the FFMpeg command.
    4. &#xA;

    5. Convert that glued video in one big fragment, and send it.
    6. &#xA;

    &#xA;

    However, I feel that it is not a clean method and I fear that I am missing something.&#xA;Is there a better solution that I am not aware of ?&#xA;Any idea suggestions are welcome.

    &#xA;

    Thank you for your time.

    &#xA;