Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (100)

  • 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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (9054)

  • 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 :

    


      

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


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


    5. Move these files to a different folder
    6. 


    7. Delete the original files from the watch folder
    8. 


    9. Send an email stating that the following video file was transcoded
    10. 


    


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

    


    /mnt/volume1/videos


    


    directory architecture

    


    /mnt/volum1/videos/sample.mp4
/mnt/volum1/videos/sample.mov
/mnt/volum1/videos/sample.mkv


    


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

    25 avril 2021, par Drew Chase

    Overview

    


    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

    


    What I need

    


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

    


    What I've Tried

    


    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.

    


    What I've Done

    


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


    


    Framework Tried

    


      

    • Xabe.FFmpeg
    • 


    • FFMpegSharp
    • 


    


  • Running multiple audio for one Twitch stream ? [closed]

    25 avril 2021, par Mangaku

    Find this : https://blog.twitch.tv/en/2017/10/10/live-video-transmuxing-transcoding-f-fmpeg-vs-twitch-transcoder-part-i-489c1c125f28/
Explaining that we can force our inputs to Twitch regarding quality.

    


    Thing is, can we force a different sound, on different quality.

    


    Like, i'm running a video loop on my stream with an audio loop at the same time. Let say song A.

    


    My question and idea is : can we force ffmpeg to abuse twitch and get :
1080p : video loop with song A
720p : video loop with song B
480p : video loop with song C
etc ??

    


    Guess its an odd question but... =)

    


    Thanks all