Recherche avancée

Médias (91)

Autres articles (54)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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 (6589)

  • ffmpeg horizonal flip makes video shorter

    26 mai 2020, par Adam Gosztolai

    I am trying to use the following command to flip my video horizontally

    



    ffmpeg -i video.mp4 -vf hflip -c:a copy video_flip.mp4


    



    However, I discovered that it makes the video shorter, which I did not intend.

    



    I originally created the video using FFMpegWriter in Python, the code looks something like this

    



    metadata = dict(title='video', artist='me', comment='Watch this!')
writer = FFMpegWriter(fps=25, metadata=metadata)
with writer.saving(fig, "video.mp4", 100):
    for t in range(100):
        ax.cla()        
        ax.plot(x,y)

        writer.grab_frame()


    



    What am I doing wrong ?

    


  • how to call avformat_alloc_output_context2 in ffmpeg 2.6.3 ?

    4 avril 2016, par patrick

    I’m developing an c/c++ app that uses ffmpeg to play audio/video.Now i want to enhance the application to allow the users to extract audio from video and save it. I followed this https://ffmpeg.org/doxygen/trunk/muxing_8c-source.html for the saving part but now the problem is with avformat_alloc_output_context2(). I’m getting an error : "undefined reference to `avformat_alloc_output_context2’
    ". Does anyone know about the proper way to call ’avformat_alloc_output_context2’ in ffmpeg version 2.6.3

  • Record audio and video simultaneously with ffmpeg in raspberry pi

    28 juin 2022, par mojtaba

    I am saving audio and video in separate files using Raspberry Pi and USB microphone connected to Raspberry Pi.
My project is to record audio and video simultaneously and save in .flv file using ffmpeg.
I can use the following command to record and save audio and video at the same time
But sound and video are not synchronized.

    


    command : raspivid -t 0 -w 960 -h 480 -fps 24 -b 5000000 -o - | ffmpeg -i - -f alsa -ac 2 -i hw:2,0 -map 0:0 -map 1:0 -vcodec copy -acodec aac -strict -2 test.flv

    


    Please guide me to solve the problem and suggest a solution if there is one.