Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (73)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6648)

  • Extract audio and video frames from a video [on hold]

    27 avril 2014, par zeitgeist

    I tried to extract video frames using Aforge FFMPEG. But it is quite slow and extracts video quailty is low. Also it doesn’t support audio functionality. So I need a library that would be extracting its audio and quality video frames.

    Below code is extracted video frames.

           VideoFileReader reader = new VideoFileReader();
           VideoFileWriter writer = new VideoFileWriter();
           reader.Open(@"D:\Ali\Videos\katy.mp4");
           writer.Open( @"D:\Ali\Videos\katy_.mp4", reader.Width, reader.Height, reader.FrameRate, VideoCodec.MPEG4 );
           Bitmap videoFrame;
           while((videoFrame = reader.ReadVideoFrame()) !=null )
           {
               writer.WriteVideoFrame(videoFrame);
               // dispose the frame when it is no longer required
               videoFrame.Dispose();
           }
  • Create muted video and black screen video with FFmpeg

    2 mars 2021, par user2685832

    I'm trying to use FFmpeg to generate the following from a local mp4 file :

    



      

    • A copy of the original video with no audio
    • 


    • A copy of the original video with audio but without visuals (a black screen instead). This file also needs to be in mp4 format.
    • 


    



    After reading through the documentation I am struggling to get the terminal commands right. To remove the audio I have tried this command without any success :

    



    ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy


    



    Could anyone guide me towards how to accomplish this ?

    


  • Create muted video and black screen video with FFmpeg on OS X

    22 septembre 2017, par user2685832

    I’m trying to use FFmpeg on OS X to generate the following from a local mp4-file :

    • A copy of the original video with no audio
    • A copy of the original video with audio but without visuals (a black screen instead). This file also needs to be in mp4 format.

    After reading through the documentation I am struggling to get the terminal commands right. To remove the audio I have tried this command without any success :

       ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy

    Could anyone guide me towards how to accomplish this ?

    Thanks !