Recherche avancée

Médias (91)

Autres articles (22)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • Convert WAV to AIFF with ffmpeg

    12 novembre 2016, par Arete

    How can I convert a wav file to an AIF file with ffmpeg ?

    I need to make various files one in 16 Bit, one in 24 bit and one in 32 Bit.

    I also need to make different sample rates. E.g one in 176,400 kHz and one in 44,100 kHz.

    I know ffmpeg -i input-file.wav output-file.aif will convert the file but I am not sure about the rest.

    https://www.ffmpeg.org/general.html#Audio-Codecs says ffmpeg supports AIFF but there is no documentation on the AIFF encoding : https://en.wikipedia.org/wiki/Audio_Interchange_File_Format#AIFF-C_common_compression_types

  • FFmpeg : building example C codes

    23 février 2021, par J. S.

    I have configured and compiled the FFmpeg library using this link :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    



    Now, I am trying to build example C codes provided by FFmpeg from here :
https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples

    



    However, when I run make install-examples or make install (suggested by /example/README), I receive this kind of message :

    



    


    make : *** No rule to make target '/doc/examples/README', needed by
 'install-examples'. Stop.

    


    



    I thought this may be due to the rules not being in the correct MakeFile format (I am not sure why they refers to README). How should I go about in fixing this and compiling the example codes ? I have tried to find solutions about this, but there doesn't seem to be much information online.

    



    Thank you.

    


  • Python Wifi Issue Connect to Mysterious Camera

    27 avril 2015, par user2723463

    I have been working with some drones and robotics projects using arduino and python. There was a kickstarter project for a neat little hex copter, that hasn’t been managed well.

    I was lucky, i got my copter and then some time later after some frustrated email exchanges, i finally recieved the camera as well. To this day, their forum has people still complaining. Their maker forum is now down and their wiki hasn’t been updated with any specifics on the camera.

    http://www.flexbot.cc/wiki/index.php?title=Main_Page#Hardware

    Their app to accompany the drone still doesn’t support the camera module. Not that it’d matter, as their code isn’t very well documented or annotated.

    https://github.com/HexAirbot

    There are some tips on switching the camera on the comments page of their kickstarter campaign.

    https://www.kickstarter.com/projects/1387330585/hex-a-copter-that-anyone-can-fly/posts/1093716

    So, sob story over, i’m stuck with this neat little wifi camera that i am unsure on how to connect to. I know how to switch it on and it does have a micro-usb port on it.

    What library in Python could i use to stream an image from this camera given that it is a wifi camera. If i wanted the video stream as a numpy matrix.

    I need to interface with the camera, so i can connect and disconnect.

    Then, be able to read images frame by frame with ffmpeg. I have some python modules that can detect and read from a camera, but how can my code ensure that the camera is connected ?

    Totally stuck. Any help would be appreciated.