Recherche avancée

Médias (91)

Autres articles (13)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3346)

  • How to build libx264 64bit library for android

    19 juillet 2016, par Pri1985

    I am unable to build libx264 code for android arm-64 bit architecture.
    Below is the command i tried.

    ./configure \
    --cross-prefix=arm-linux-androideabi- \
    --sysroot="$HOME/NDK/android-ndk-r10d/platforms/android-21/arch-arm64/" \
    --host=arm-linux \
    --enable-pic \
    --enable-static \
    --disable-cli

    Please advice.
    Thanks in advance.

  • ffmpeg, libav : Recording RTSP at reduced frame rate without re-encoding

    6 janvier 2021, par synchronice

    I'm trying to record a chunk of an RTSP video stream (say 5 minutes) to an mp4 file. The RTSP video stream is H.264 encoded and at 30 FPS. I'd like to record it at 10 FPS by dropping frames, without re-encoding (benefit : uses less CPU, lossless).

    


      

    • Is this possible ?
    • 


    • How do I do this ? Examples using the libav libraries are most useful since I'm writing an application, but an ffmpeg command is also helpful.
    • 


    


    Thanks in advance.

    


  • FFMPEG with python : Only audio is playing when trying to replace the audio in video

    5 mai 2021, par Danny

    Hey guys I am a noob with ffmpeg and trying to replace the audio with a new audio, I have gone through some SO questions and still having trouble solving the problem. As of now, I am getting only the audio with the specified duration and only able to play it in vlc player. The video is not showing.

    


    Can someone tell me how to properly do it ?

    


    This is the command.

    


    process = subprocess.call([settings.VIDEO_ENCODING_FFMPEG_PATH, 
                "-probesize", "10M", "-i", input_file_path, "-i", input_audio_path, "-crf", "28",
                "-ss", 0, "-t", 50, "-vcodec", "libx264", "-b:v", "4M", "-preset", "medium",
                "-map", '0:v', "-map", "1:a", "-b:a", "64k", output_file_path])


    


    Thanks in advance.