Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10733)

  • How to change part of a MKV video with another MKV video without re-encode and without changing audio file of the primary MKV file [closed]

    10 octobre 2020, par MonsterMMORPG

    I have a lecture that I have recorded with using OBS studio and my microphone

    


    But I want to replace certain part of that video with another video without re-encoding or touching the audio

    


    The another video is also recorded with OBS studio with the same settings

    


    If encoding is necessary I accept that as well

    


    So what would be the appropriate ffmpeg command ?

    


    Here example file definitions and durations to give more clear example

    


      

    • a.mkv : 77 minutes long

      


    • 


    • b.mkv : same format and 2 minutes long

      


    • 


    • c.mkv : I want to replace 00.23.00 - 00.25.00 part of a.mkv with b.mkv without changing the audio file of a.mkv

      


    • 


    


    Is this possible without encoding or with re-encoding ?

    


    So can you provide an example code with some definitions

    


    How do we define starting position, the durations ? I found some examples on the Internet but they were not definitive enough

    


    Answer to this question : https://superuser.com/questions/1591877/how-to-change-part-of-a-mkv-video-with-another-mkv-video-without-re-encode-and-w

    


  • avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed

    28 septembre 2020, par Marton Balint
    avformat/aviobuf : discard part of the IO buffer in ffio_ensure_seekback if needed
    

    Previously ffio_ensure_seekback never flushed the buffer, so successive
    ffio_ensure_seekback calls were all respected. This could eventually cause
    unlimited memory and CPU usage if a demuxer called ffio_ensure_seekback on all
    it's read data.

    Most demuxers however only rely on being able to seek back till the position of
    the last ffio_ensure_seekback call, therefore we change the semantics of
    ffio_ensure_seekback so that a new call can invalidate seek guarantees of the
    old. In order to support some level of "nested" ffio_ensure_seekback calls, we
    document that the function only invalidates the old window (and potentially
    discards the already read data from the IO buffer), if the newly requested
    window does not fit into the old one.

    This way we limit the memory usage for ffio_ensure_seekback calls requesting
    consecutive data windows.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/avio_internal.h
    • [DH] libavformat/aviobuf.c
  • ffmpeg add watermark by output part count (watermark1.png for part 1, ...)

    12 octobre 2020, par Steapy

    I have currently following code (not optimized yet !) :

    &#xA;

    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";&#xA;

    &#xA;

    This renders all my parts with the same "watermark.png" file as a watermark. But now i want to do something like this :

    &#xA;

    converter.StartInfo.Arguments = @"-i video.mp4 -i watermark%03d.png -filter_complex ""overlay = x = (main_w - overlay_w) / 2:y = (main_h - overlay_h) / 2"" output%03d.mp4";&#xA;

    &#xA;

    "output000.mp4" has "watermark000.png" as a watermark,&#xA;"output001.mp4" has "watermark001.png" as a watermark,&#xA;"output002.mp4" has "watermark002.png" as a watermark, ...

    &#xA;

    I need it in only one line, as if i would type it in cmd and it should work in c# with UseShellExecute=false.

    &#xA;

    Any idea ?

    &#xA;