Recherche avancée

Médias (91)

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11935)

  • Porting code from Windows 7 to Linux using using NReco.VideoConverter

    2 février 2017, par Omar Salem

    I trying to port code from Windows 7 to Linux (RHEL 7). I am using the component to connect to a webcam and capture audio and video to a file and also capture frames as images to files. On Windows 7 I used the following code which works :

    var ffMpegTask = videoConv.ConvertLiveMedia(
       @"/dev/video0", // @"video=Logitech ... :audio=Microphone ..." on Windows
       "v4l2",                       // "dshow"  on Windows
       rawBmpOutputStream,
       null,              
       new ConvertSettings() {
               CustomOutputArgs = String.Format(" -r 5 -t 10 output.wmv -r 5 -t 10 output.mp3 -r 5 -t 10 -f rawvideo -s {0}x{1} -pix_fmt bgr24 ",
                       outputWidth, outputHeight)  });    

    This code compiles and executes on RHEL and MonoDevelop but does not generate the audio, video or image files. The webcam blinks for a second and goes away.

  • Révision 22423 : Documentation du code :

    25 septembre 2015, par amemo@rezo.net

    - objet_associer (par pierretux) : Rajout d’accent
    - translitteration_complexe (par Ybbet) : Correction de l’accent du a` confondu avec un code markdown
    - ecrire_meta (par Ybbet) : Faute de frappe
    - verifier_session (par pierretux) : Lien vers la doc inutile
    - nettoyer_uri (par Ybbet) : L’url vers code.spip.net cassait la mise en page sur le site.

    Relecteur : Matthieu Marcillaud

  • How to add a hard code of subs to this filter_complex

    15 juin 2021, par k-on fan
    ffmpeg -ss 00:11:47.970 -t 3.090 -i "file.mkv" -ss 00:11:46.470 -t 1.500 -i "file" -ss 00:11:51.060 -t 0.960 -i "file.mkv" -an -c:v libvpx -crf 31 -b:v 10000k -y -filter_complex "[0:v:0][0:a:0][1:v:0][1:a:0][2:v:0][2:a:0]concat=n=3:v=1:a=1[outv][outa];[outv]scale='min(960,iw)':-1[outv];[outv]subtitles='file.srt'[outv]" -map [outv] file_out.webm -map [outa] file.mp3


    


    I have a filter where take three different points in a file concat them together and scale them down this part works

    


    Im looking to see how to add to the filter_complex a sub burn in step rendering the subs from the exact timings usings a file that I specify when I use the above code it doesn't work