Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (87)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6853)

  • avformat/mux : add proper support for full N:M bitstream filtering

    18 avril 2020, par Marton Balint
    avformat/mux : add proper support for full N:M bitstream filtering
    

    Previously only 1:1 bitstream filters were supported, the end of the stream was
    not signalled to the bitstream filters and time base changes were ignored.

    This change also allows muxers to set up bitstream filters regardless of the
    autobsf flag during write_header instead of during check_bitstream and those
    bitstream filters will always be executed.

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

    • [DH] libavformat/mux.c
  • I want to overlaying the gif image on full video using NReco.VideoConverter (FFmpeg). But getting error using ffmpeg.CreateMedia

    6 mai 2020, par Gagandeep Singh

    When I'm creating using ffmpeg.Invoke the below command is working perfectly :-

    &#xA;&#xA;

    ffmpeg.Invoke($"-i {@"result.mp4"} -ignore_loop 0 -i {@"giffy_1000.gif"} -filter_complex \" [1:v]scale=1920:1800 [ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" {@"result2.mp4"}");&#xA;

    &#xA;&#xA;

    But when I tried using the above command in ffmpeg.CraeteMedia then it throws the error as convertion failed. Below is the code snippet :-

    &#xA;&#xA;

    ffmpeg1.ConvertMedia(&#xA;    new[] {&#xA;        new FFMpegInput(@"result.mp4"),&#xA;        new FFMpegInput(@"giffy_1000.gif")&#xA;    },&#xA;    @"style.mp4",&#xA;    null,&#xA;    new ConvertSettings() {&#xA;        CustomOutputArgs = " -ignore_loop 0 -filter_complex \" [1:v]scale=1920:1800[ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" "&#xA;    });&#xA;

    &#xA;&#xA;

    Please let me know what mistake I'm doing.

    &#xA;

  • avformat/hlsenc : resend full url of the init fragment mp4

    4 mai 2020, par Steven Liu
    avformat/hlsenc : resend full url of the init fragment mp4
    

    fix ticket : 8651
    because the init fragment mp4 file name is without base url name,
    so just modify it use the full url which splice after init function.

    Tested-by : matclayton
    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c