Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (55)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7022)

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