Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (89)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (10813)

  • libavfilter/vf_srcnn.c : adds DNN module backend AVOption, changes AV_LOG_INFO message...

    6 juin 2018, par Sergey Lavrushkin
    libavfilter/vf_srcnn.c : adds DNN module backend AVOption, changes AV_LOG_INFO message to AV_LOG_VERBOSE.
    

    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] libavfilter/vf_srcnn.c
  • avcodec : add Micronas SC-4 parser

    9 septembre 2022, par Paul B Mahol
    avcodec : add Micronas SC-4 parser
    
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/misc4_parser.c
    • [DH] libavcodec/parsers.c
  • how to combine all chunk videos path into text file using ffmpeg

    31 juillet 2017, par Megha CS

    Task is to create final output video by combining all chunk videos recording from webcam using ffmpeg.

    For that, created process with passing the ffmpeg command as argument and save all chunk videos to local folder.

    code snippet :

    process =new Process();
    process.StartInfo.FileName = Directory.GetCurrentDirectory() + @"\ffmpeg.exe";
    process.StartInfo.Arguments = "-re -rtbufsize 1000M -f dshow -i video=" + "\"" + vidDevName + "\"" + " -acodec libvo_aacenc -ab 48kb -ar 22050 -ac 2 -b:a 128k -vcodec libx264 -r 25 -s 480x360 -pix_fmt yuv420p -preset medium -segment_time 10 -f segment output%03d.mp4";
    process.Start();

    Its working fine. But now, have to create text file of listing all chunk videos path and can create final output video by using "-f concat -safe 0 -i mylist.txt -c copy output.mp4" as an argument.

    Am stuck in creating text file with listing all chunk videos path in c#.
    I have used (for %i in (*.wav) do @echo file ’%i’) > mylist.txt to create text file. Its working fine in command prompt but not in C# application.
    So please suggest on this.