Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (20)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (2955)

  • Installing FAAC on linux, getting errors

    18 août 2014, par Kyle Monti

    I am trying to install FAAC on linux. I’m getting errors.

    I use this to install.

    cd /usr/src
    wget http://sourceforge.net/projects/faac/files/faac-src/faac-1.28/faac-1.28.tar.bz2/download
    tar -xvjf faac-1.28.tar.bz2
    cd faac-1.28
    ./configure
    make
    make install

    Once I try to make it, I get the error

    mpeg4ip.h:126: error: new declaration ‘char* strcasestr(const char*, const char*)’
    /usr/include/string.h:369: error: ambiguates old declaration ‘const char* strcasestr(const char*, const char*)’
    make[3]: *** [3gp.o] Error 1
    make[3]: Leaving directory `/usr/src/faac-1.28/common/mp4v2'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/usr/src/faac-1.28/common'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/usr/src/faac-1.28'
    make: *** [all] Error 2

    I read up online and it was saying it was interfearing with something, and I had to locate a file and edit it.

    How do i fix this installation so it install properly.

  • whats the difference between “&” and multiple terminals in Linux Multiprocessing [closed]

    11 mai 2022, par Ma XIaoyu

    I am using Linux for multi-task processing. Specifically, calling ffmpeg multiple times to transcoding multi source videos.

    


    Strangely, when I am using :
“
ffmpeg-cmds01 &
ffmpeg-cmds02 &
ffmpeg-cmds03 &
……
”
The ffmpeg process often get errors and stop after a few hours.

    


    However, if I open several terminals and using each terminal for only one ffmpeg cmd( i.e., terminal#1 only run ffmpeg-cmd01 ; ternimal#2 only for ffmpeg-cmd02, etc.) The transcoding procedure can last for dozens of days and no errors are reported.

    


    Could anyone kindly help us to analysis what’s there differences ? Opening multiple terminals is too difficult for managing especially when the number of video streams are up to 300+.

    


    Thanks a lot for help !

    


  • Get a still frame during video capture on Linux

    15 janvier 2020, par Arthur Hebert

    I want to capture video from a webcam (saving to file), and occasionally get the most recent still frame on-demand (from python code), while continuing to capture. Is there a way to do this on Linux ?

    To capture video, I am using the following command :

    ffmpeg -f v4l2 -framerate 30 -video_size 1024x576 -i /dev/video0 myvideo.mp4

    Then in another terminal, I try to capture the latest still frame :

    ffmpeg -sseof -3 -i myvideo.mp4 -update 1 -q:v 1 current_frame.jpg

    I get varied responses from this last command, including

    Cannot use -sseof, duration of myvideo.mp4 not known

    and

    [matroska,webm @ 0x55e1aae26900] Duplicate element
       Last message repeated 2 times

    Constraints :

    1. I need to control the solution from python (e.g. calling ffmpeg via subprocess.Popen) to (a) start recording, (b) get frames at arbitrary points, (c) stop recording.

    Flexibility

    1. The frame timing doesn’t have to be exact. It’s okay for it to be a frame within the last couple seconds.
    2. I am not attached to a particular container format (mkv, mp4, etc.)
    3. I am open to programs other than ffmpeg (it’s nice if it works on Windows too, but not required)