Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

Sur d’autres sites (5127)

  • How to cut off 5 seconds after every 28 seconds and loop with ffmpeg ?

    25 juin 2018, par Quang Vinh

    I am a new member. I hope you will help.
    I want to cut a few seconds in the ten minute video with ffmpeg.
    For example, I have a 10 minute video. And I need a command that can cut 5 seconds , starting at seconds 28 and repeating. every 28 seconds cut off 5 seconds

  • ffmpeg filter / stuttering / how to smooth camera movement

    23 juin 2018, par Deex

    I’m using ffmpeg witht he following code for some camera movement effects.

    -filter:v "crop=in_w/1.2:in_h/1.2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*0.1):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*0.4)"

    Its working but the camera movement is stuttering and looks realy ugly that way (also on 60 fps). I hope someone could lead me to a idea to have a more smooth movement.

  • ffmpeg in a bash pipe

    27 décembre 2019, par Martin Wang

    I have a rmvb file path list, and want to convert this files to mp4 files. So I hope to use bash pipeline to handle it. The code is

    Convert() {
       ffmpeg -i "$1" -vcodec mpeg4 -sameq -acodec aac -strict experimental "$1.mp4"
    }

    Convert_loop(){
       while read line; do
          Convert $line
       done
    }

    cat list.txt | Convert_loop

    However, it only handle the first file and the pipe exits.

    So, does ffmpeg affect the bash pipe ?