Recherche avancée

Médias (91)

Autres articles (11)

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

  • Subprocess not working when called in atom

    22 août 2019, par jan1892

    I am running python3.6 in Atom using the package ’script’ on Ubuntu 18.04.

    I am trying to cut videos using ffpb (basically ffmpeg with a progress bar instead of verbose).

    The following code gives the error : ’FileNotFoundError : [Errno 2] No such file or directory : ’ffpb’ : ’ffpb’

    import subprocess

    cmds = ['ffpb', '-i', 'input.mp4', 'output.mp4']
    subprocess.call(cmds)
    • The command ’ffpb -i input.mp4 output.mp4’ works in the terminal
    • The script works when I call it with python3 in the terminal
    • The script works in atom if I replace ffpb by ffmpeg
    • I installed ffpb using pip3 install —user ffpb
    • I never had problems like this running code in atom before.

    Thanks in advance for any help.

  • linux ffmpeg Live streaming cannot connect to another PC

    9 juin 2019, par Tae-Yeong

    I’m set ffserver and ffmpeg streaming code in the linux console terminal.

    ffserver => ffserver -f ./ffserver.conf (terminal 1)

    ffmpeg => ffmpeg -r 15 -s 640x480 -f video4linux2 -i /dev/video0 http://mylocalhostip:8090/feed1.ffm (terminal 2)

    It was working success in the localhost.
    But It could not connect other PC or Mobile.
    Firewall set disable.

    My desktop and mobile have a normal Internet connection.

    I want to Live-Streaming connect other PC or Mobile.
    How can I do ?

    Hardware = LattePanda
    OS = Ubuntu 16.04

    < ffserver.conf >

    HTTPPort 8090

    bind to all IPs aliased or not

    HTTPBindAddress 0.0.0.0

    max number of simultaneous clients

    MaxClients 1000

    max bandwidth per-client (kb/s)

    MaxBandwidth 10000

    Suppress that if you want to launch ffserver as a daemon.

    NoDaemon

       <feed>
       File /tmp/feed1.ffm
       FileMaxSize 100M
       </feed>
       <stream>
       Feed feed1.ffm
       Format swf
       VideoCodec flv
       VideoFrameRate 15
       VideoBufferSize 80000
       VideoBitRate 100
       VideoQMin 1
       VideoQMax 5
       VideoSize 640x480
       PreRoll 0
       Noaudio
       </stream>
       <stream>
       Format status
       ACL allow localhost
       ACL allow 121.172.0.0 121.172.0.255 (my desktop Ip range)
       </stream>

    I expect to output of My WebCam Screen, but the actual output timeout.

    My desktop OS is Window10. And Mobile OS is Android.

  • ffmpeg for android guardian project build failing

    20 octobre 2015, par Wikki

    I am a noob and i am trying to compile a static build of ffmpeg for android using "guardian project" repo. (https://github.com/guardianproject/android-ffmpeg)

    I have followed the steps mentioned in there, but it fail all the time. I am using Ubuntu 11.10 64 bit using vmware. Android NDk r8e 32 bit.

    Here is the complete log of android-ffmpeg compilation. http://bit.ly/1mgZqeV

    Also have a look at the terminal command window showing the errors......

    It seems that make files are not done.

    compile time terminal view

    Please help me if some one has more clear understanding.