Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (72)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8013)

  • create thumbnail from video URL in C#

    23 mai 2016, par Hashem Aboonajmi

    I want to generate thumbnail from a video URL in C#. I have searched a lot to find a neat way but no success. I have used Nreco and MediaToolKit but none of them extract thumbnail image. using ffmpeg also has mumbo jumbos which didn’t worked !

    using NReco :

    var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
    string thumbnailJPEGpath = "http://localhost:81882/content/hashem.jpeg";
    ffMpeg.GetVideoThumbnail(videoUrl,thumbnailJPEGpath);

    using ffmpeg :

    try
           {
               System.Diagnostics.Process ffmpeg;

               string video;
               string thumb;

               video = Server.MapPath("~/Content/Movies/bye.mp4");
               thumb = Server.MapPath("~/Content/frame.jpg");

               ffmpeg = new System.Diagnostics.Process();

               ffmpeg.StartInfo.Arguments = " -i " + video + " -ss 00:00:07 -vframes 1 -f image2 -vcodec mjpeg " + thumb;
               ffmpeg.StartInfo.FileName = Server.MapPath("~/Content/ffmpeg.exe");
               ffmpeg.Start();
               ffmpeg.WaitForExit();
               ffmpeg.Close();
           }
           catch (Exception ex)
           {
               Response.Write("Error: " + ex.Message);
           }

    to consider video files are not local and I have only a direct link to the file :
    e.g. :http://phytonord.com/Film-Series/hana/26.mp4

    does anyone has any solution ? any sample code that works ?

  • Why does x264 keep giving me "command not found" error on my Mac ? [closed]

    2 juillet 2021, par hd-dvd

    I just installed x264 via Homebrew on my Mac running MacOS 11.4 Big Sur. I'm trying to encode a video but I can't get x264 to run properly.

    


    This is the command I am running in the Terminal :

    


    x264 --bitrate 25000 --preset veryslow --bluray-compat --tune film --vbv-maxrate 40000 --vbv-bufsize 30000 --level 4.1 --keyint 30 --open-gop --slices 4 --fake-interlaced --colorprim "bt709" --transfer "bt709" --colormatrix "bt709" --sar 1:1 --pass 1 -o out.264 in.mp4

    


    and this is what it outputs :

    


    bash: x264 --bitrate 25000 --preset veryslow: command not found

    


    If I delete the --preset part then it just gets hung up on some other part, like --tune.

    


    I have tried brew doctor and there are no errors.

    


    If I just run x264 then it gives me x264 [error]: No input file. Run x264 --help for a list of options. so it seems as if x264 is installed. I don't know where to begin troubleshooting this but I'd like to get it to work.

    


    If I simplify the command way down to x264 -o out.264 in.mp4 then I get :

    


    avs [error]: failed to load avisynth
raw [error]: raw input requires a resolution.
x264 [error]: could not open input file `in.mp4' via any method!


    


    I would greatly appreciate some pointers on how to get this working.

    


  • Matching loudness of commentary track with FFmpeg

    9 mai 2017, par Jon Sangster

    I am using FFmpeg to mix a MP3 file containing a commentary track into the soundtrack of multimedia file. So far I have had great success using FFmpeg’s sidechaincompress filter to auto-duck the soundtrack stream before mixing in the commentary. You can hear the commentary clearly, even when there’s loud music or explosions going on in the film.

    Awesome.

    However, the issue I have now is during the very quiet scenes. When the soundtrack is very quiet, the commentary seems far too loud. If I adjust the volume of the entire commentary track so that it sounds right during the quiet scenes, it’s too heard to hear during the loud scenes.

    My current idea is to somehow use the sidechaincompress filter to duck the commentary track as well, before finally mixing it into the soundtrack. The problem though is that sidechaincompress compresses the target’s volume when the source is loud, but I need the volume to be compressed when the source is quiet.

    I have to admit that I am a quiet the newbie in this domain, so I may coming at this entirely wrong. I’m happy for any advice you can provide !