Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (7858)

  • mips : Fix potential illegal instruction error.

    12 avril 2021, par Shiyou Yin
    mips : Fix potential illegal instruction error.
    

    MSA2 optimizations are attached to MSA macros in generic_macros_msa.h.
    It's difficult to do runtime check for them. Remove this part of code
    can make it more robust. H264 1080p decoding : 5.13x==>5.12x.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure
    • [DH] libavutil/mips/generic_macros_msa.h
  • How to assign variable to different extension of files in same directory in bash

    3 mai 2021, par Yacer Azeem

    I have a task to :

    &#xA;

      &#xA;
    1. Watch a folder for video files (mp4,mov,mkv etc.)
    2. &#xA;

    3. Transform the video files to HLS (480p, 720p, 1080p) using ffmpeg
    4. &#xA;

    5. Move these files to a different folder
    6. &#xA;

    7. Delete the original files from the watch folder
    8. &#xA;

    9. Send an email stating that the following video file was transcoded
    10. &#xA;

    &#xA;

    I want to deal with every .mp4 .mov and .mkv as a variable in bash so that I can perform the above-mentioned tasks.&#xA;The folder containing these files are in

    &#xA;

    /mnt/volume1/videos&#xA;

    &#xA;

    directory architecture

    &#xA;

    /mnt/volum1/videos/sample.mp4&#xA;/mnt/volum1/videos/sample.mov&#xA;/mnt/volum1/videos/sample.mkv&#xA;

    &#xA;

  • How can I make a Transcoded Video Filestream using C# and .NET Core

    25 avril 2021, par Drew Chase

    Overview

    &#xA;

    I'm currently working on a media streaming server using ASP.net Core REST Server. I'm currently using .net 5.0 and ASP.net Core MVC

    &#xA;

    What I need

    &#xA;

    I need to be able to dynamically down-res the original video file. from 1080p to 720p for example.&#xA;Also I need to be able to make the media file able to be transcoded to a different encoding based on client capabilities.

    &#xA;

    What I've Tried

    &#xA;

    I've been looking for a library that can manage this feat, but I can't seem to find one. I thought FFMpeg would be able to do this. I know this is possible because applications like plex and emby seem to manage this.

    &#xA;

    What I've Done

    &#xA;

    [HttpGet("/api/streaming/video")]&#xA;public IActionResult GetFile()&#xA;{&#xA;    string path = "C:\Path\To\Video\FILE.mp4";&#xA;    System.IO.FileStream stream = new(path, System.IO.FileMode.Open, System.IO.FileAccess.Read);&#xA;    Microsoft.AspNetCore.Mvc.FileStreamResult file = File(stream, "video/mp4", true);&#xA;    return file;&#xA;}&#xA;

    &#xA;

    Framework Tried

    &#xA;

      &#xA;
    • Xabe.FFmpeg
    • &#xA;

    • FFMpegSharp
    • &#xA;

    &#xA;