Recherche avancée

Médias (91)

Autres articles (106)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (19343)

  • Missing H264 and mpeg profile/encoders in ffmpeg ?

    11 avril 2018, par eirikaso

    I’m trying to record video from a connected USB camera using ffmpeg on ubuntu.

    When I input

    ffmpeg -f v4l2 -framerate 15 -s 800x600  -i /dev/video0 output.avi

    i get the following error :

    [mpeg4_v4l2m2m @ 0x4d79d0] mpeg4 profile not found

    Similarly when i use

    ffmpeg -f v4l2 -framerate 15 -s 800x600  -i /dev/video0 output.mkv  

    i get

    [h264_v4l2m2m @ 0x4c1ec0] h264 profile not found

    I installed ffmpeg using apt install. Does ayone have a solution for this ?

  • vaapi_decode : Ignore the profile when not useful

    4 septembre 2016, par Mark Thompson
    vaapi_decode : Ignore the profile when not useful
    

    Enables VP8 decoding - the decoder places the the bitstream version
    in the profile field, which we want to ignore.

    • [DBH] libavcodec/vaapi_decode.c
  • Server-side video editing

    23 novembre 2020, par oscarm

    This is what I need to do on a server.

    



    Let's say that I have 3 video files :
video1.avi 2 minutes -> 640x320
video2.avi 1 minute -> 640x320
video3.avi 1 minute -> 640x320

    



    I need to create video4.avi, that will be 2 minutes long and 1280x320, Containing the videos side by side (horizontally).I need video2 and video3 to be at the right side of video 1. Video3 should start after video video2 ends.

    



      

    • I need to do this at the server side.
    • 


    • Be able to compose video/audio without overlapping.
    • 


    • Be able to add several small video clips to the right side of the longer video.
    • 


    • This should be a command line tool.
    • 


    



    What can I use to accomplish this ?

    



    First thing I thought was FFMPEG and Image Magick. Export the audio with FFMPEg and compose the video frames (exported by FFMPEG) into single images. I know I can generate a video file from frames and audio, but I don't know if it's possible to sync the audio files and compose them (video1's and videos2's audio should be mixed, play simultaneously).

    



    Any ideas ?