Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (105)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6940)

  • Trimming multiple videos using text file

    25 février 2021, par Raghav Arora

    I want to cut multiple videos based on their starting and ending frame which is stored in a text file : annotations.txt

    


    The format of the text file is :

    


    video_name | category_name | starting frame | ending frame

    


    I think the pseudo code may look something like this :

    


    for i in video_name:
 for j in start_end_frame:
  trim_video()


    


    ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4

    


    This is something I found for a single video while hardcoding the input names and start and end time.
How can I make this dynamic to correspond with my annotations file ?

    


  • ffmpeg video File incomplete error when downloaded chrome version 69

    6 septembre 2018, par user3946910

    I am generating video in my protractor tests in Linux machine. The video is .mov format for chrome version 69.0.3497
    .Downloading the .mov file give "File Incomplete Error" during download.

      jasmine.getEnv().addReporter(new VideoReporter({
           baseDirectory: './test-output/videos',
           saveSuccessVideos: true,
           ffmpegCmd: '/usr/local/bin/ffmpeg',
           ffmpegArgs: [
               '-y',
               '-r', '30',
               '-f', 'x11grab',
               '-s', '1280x1024',
               '-i', process.env.DISPLAY,
               '-g', '300',
               '-vcodec', 'mpeg4'
           ]
       }));
  • 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.