Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (67)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12480)

  • Merge commit '163cc67beb3ed28aeb500c9a09df47c8df613025'

    25 octobre 2017, par James Almer
    Merge commit '163cc67beb3ed28aeb500c9a09df47c8df613025'
    

    * commit '163cc67beb3ed28aeb500c9a09df47c8df613025' :
    takdec : Use ISO C printf conversion specifiers where appropriate
    dcadec : remove extra indirection
    hevcdec : Use LOCAL_ALIGNED_* for declaring local variables with alignment
    arm : Always build the hevcdsp_init_arm.c file

    This commit is a noop.

    Merged-by : James Almer <jamrial@gmail.com>

  • How to convert a Stream on the fly with FFMpegCore ?

    18 octobre 2023, par Adrian

    For a school project, I need to stream videos that I get from torrents while they are downloading on the server.&#xA;When the video is a .mp4 file, there's no problem, but I must also be able to stream .mkv files, and for that I need to convert them into .mp4 before sending them to the client, and I can't find a way to convert my Stream that I get from MonoTorrents with FFMpegCore into a Stream that I can send to my client.

    &#xA;

    Here is the code I wrote to simply download and stream my torrent :

    &#xA;

    var cEngine = new ClientEngine();&#xA;&#xA;var manager = await cEngine.AddStreamingAsync(GenerateMagnet(torrent), ) ?? throw new Exception("An error occurred while creating the torrent manager");&#xA;&#xA;await manager.StartAsync();&#xA;await manager.WaitForMetadataAsync();&#xA;&#xA;var videoFile = manager.Files.OrderByDescending(f => f.Length).FirstOrDefault();&#xA;if (videoFile == null)&#xA;    return Results.NotFound();&#xA;&#xA;var stream = await manager.StreamProvider!.CreateStreamAsync(videoFile, true);&#xA;return Results.File(stream, contentType: "video/mp4", fileDownloadName: manager.Name, enableRangeProcessing: true);&#xA;

    &#xA;

    I saw that the most common way to convert videos is by using ffmpeg. .NET has a package called FFMpefCore that is a wrapper for ffmpeg.

    &#xA;

    To my previous code, I would add right before the return :

    &#xA;

    if (!videoFile.Path.EndsWith(".mp4"))&#xA;{&#xA;    var outputStream = new MemoryStream();&#xA;    FFMpegArguments&#xA;        .FromPipeInput(new StreamPipeSource(stream), options =>&#xA;        {&#xA;            options.ForceFormat("mp4");&#xA;        })&#xA;        .OutputToPipe(new StreamPipeSink(outputStream))&#xA;        .ProcessAsynchronously();&#xA;    return Results.File(outputStream, contentType: "video/mp4", fileDownloadName: manager.Name, enableRangeProcessing: true);&#xA;}&#xA;

    &#xA;

    I unfortunately can't get a "live" Stream to send to my client.

    &#xA;

  • How can I remove encode settings from mediainfo for H265 HEVC .mkv ? Remove Writing library ?

    13 octobre 2020, par For Fun

    I want to know how I can remove encode settings from the mediainfo with mkvpropedit or ffmpeg ?

    &#xA;

    İn this post :&#xA;How can I remove metadata from a flv file ?&#xA;I found this command :&#xA;ffmpeg -i INPUT -c copy -bsf:v &#x27;filter_units=remove_types=6&#x27; OUTPUT
    &#xA;for only h264 AVC !

    &#xA;

    so how can you do this for h265 HEVC ?&#xA;What command do i need to use ?

    &#xA;

    İ want to remove this :

    &#xA;

    cpuid=0 / frame-threads=3 / no-wpp / no-pmode / no-pme / no-psnr / no-ssim / log-level=2 / input-csp=1 / input-res=1920x1080 / interlace=0 / total-frames=0 / level-idc=0 / high-tier=1 / uhd-bd=0 / ref=2 / no-allow-non-conformance / no-repeat-headers / annexb / no-aud / no-hrd / info / hash=0 / no-temporal-layers / open-gop / min-keyint=23 / keyint=250 / gop-lookahead=0 / bframes=4 / b-adapt=0 / b-pyramid / bframe-bias=0 / rc-lookahead=15 / lookahead-slices=0 / scenecut=40 / radl=0 / no-splice / no-intra-refresh / ctu=64 / min-cu-size=8 / no-rect / no-amp / max-tu-size=32 / tu-inter-depth=1 / tu-intra-depth=1 / limit-tu=0 / rdoq-level=0 / dynamic-rd=0.00 / no-ssim-rd / signhide / no-tskip / nr-intra=0 / nr-inter=0 / no-constrained-intra / strong-intra-smoothing / max-merge=2 / limit-refs=3 / no-limit-modes / me=1 / subme=1 / merange=57 / temporal-mvp / no-hme / weightp / no-weightb / no-analyze-src-pics / deblock=0:0 / sao / no-sao-non-deblock / rd=2 / selective-sao=4 / early-skip / rskip / fast-intra / no-tskip-fast / no-cu-lossless / no-b-intra / no-splitrd-skip / rdpenalty=0 / psy-rd=2.00 / psy-rdoq=0.00 / no-rd-refine / no-lossless / cbqpoffs=0 / crqpoffs=0 / rc=crf / crf=18.0 / qcomp=0.60 / qpstep=4 / stats-write=0 / stats-read=0 / ipratio=1.40 / pbratio=1.30 / aq-mode=2 / aq-strength=1.00 / cutree / zone-count=0 / no-strict-cbr / qg-size=32 / no-rc-grain / qpmax=69 / qpmin=0 / no-const-vbv / sar=1 / overscan=0 / videoformat=5 / range=0 / colorprim=2 / transfer=2 / colormatrix=2 / chromaloc=0 / display-window=0 / cll=0,0 / min-luma=0 / max-luma=1023 / log2-max-poc-lsb=8 / vui-timing-info / vui-hrd-info / slices=1 / no-opt-qp-pps / no-opt-ref-list-length-pps / no-multi-pass-opt-rps / scenecut-bias=0.05 / no-opt-cu-delta-qp / no-aq-motion / no-hdr / no-hdr-opt / no-dhdr10-opt / no-idr-recovery-sei / analysis-reuse-level=5 / scale-factor=0 / refine-intra=0 / refine-inter=0 / refine-mv=1 / refine-ctu-distortion=0 / no-limit-sao / ctu-info=0 / no-lowpass-dct / refine-analysis-type=0 / copy-pic=1 / max-ausize-factor=1.0 / no-dynamic-refine / no-single-sei / no-hevc-aq / no-svt / no-field / qp-adaptation-range=1.00

    &#xA;