Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (8898)

  • ffmpeg - render multiple audio files on a video [duplicate]

    28 février 2018, par J. Doe

    This question already has an answer here :

    I want to render audio from multiple .wav files on an .mp4 file so the out put will be the original video and sound with the audio of the .wav files on top of it.

    I’ve read many similar threads in Stackoverflow and nothing worked for me.
    This is my latest attempt :
    ffmpeg -i original.mp4 -itsoffset 3 -i additional1.wav -itsoffset 5 -i additional2.wav -c:v copy -map 0:v -map 0:a -map 1:a -map 2:a output.mp4

    But it doesn’t work

  • Using ffmpeg to convert video audio and thumbnail in separate threads ?

    26 janvier 2018, par Oleksandr Kyrpa

    I converting lot of videos and same time ago, I found what if split converting process to different task then I can speed up total process. Because, for example, ffmpeg process don’t need wait for processing raw data to video decoder if audio frame was readed from input file, just skip this frame.

    process1 for video

    ffmpeg -i video.mp4 -an -c:v h264 ..... -y out.h264

    process2 for audio

    ffmpeg -i video.mp4 -vn -c:a aac ...... -y out.aac

    process3 for thumbnail

    ffmpeg -i video.mp4 -vf fps=1/60 img%03d.jpg

    And after all process was completed then I need to marge video and audio tracks in to mp4 container. Using this method I solve bottle neck problem and got seed up total process.

    ffmpeg -i out.h264 -i out.aac -c:v copy -c:a copy -y out.mp4

    But any other way to speed up convertion in modern ffmpeg ?

  • TCL script unable to work with multiple camera on windows 7 platform

    27 novembre 2017, par M. D. P

    My TCL script works properly for single camera. the TCL script is as follow :

    proc liveStreaming {} {

       #open the config file.
       set f [open "C:/main/video_config.txt" r]

       #To retrive the values from the config file.
       while {![eof $f]} {
           set part [split [gets $f] "="]
           set props([string trimright [lindex $part 0]]) [string trimleft [lindex $part 1]]
       }
       close $f

       #camera selection to live streaming.
       set camera "video"
       append cctv $camera "=" $props(cctv)

       #ffmpeg command to capture live streaming in background
       exec ffmpeg -f dshow -s 1280x720 -i $cctv c:/test/sample.avi >& c:/test/temp.txt &

    }
    liveStreaming

    //above code is to capture video using ffmpeg and tcl.

    My text file "video_config" is as follow :

    cctv=Logitech HD Webcam C525

    as, i want it to run with multiple camera : the text file should be as follow :

    cctv=Integrated Webcam,Logitech HD Webcam C525

    The problem is "," (comma), my TCL script is unable to predict the coma (,) . can any one provide me the proper TCL script which can predict the coma, so that my TCL script can work with multiple camera.

    Error Report :

    ffmpeg version N-89127-g8f4702a93f Copyright (c) 2000-2017 the FFmpeg developers
     built with gcc 7.2.0 (GCC)
     configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-bzlib --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-cuda --enable-cuvid --enable-d3d11va --enable-nvenc --enable-dxva2 --enable-avisynth --enable-libmfx
     libavutil      56.  0.100 / 56.  0.100
     libavcodec     58.  3.103 / 58.  3.103
     libavformat    58.  2.100 / 58.  2.100
     libavdevice    58.  0.100 / 58.  0.100
     libavfilter     7.  2.100 /  7.  2.100
     libswscale      5.  0.101 /  5.  0.101
     libswresample   3.  0.101 /  3.  0.101
     libpostproc    55.  0.100 / 55.  0.100
    [dshow @ 05944ac0] Could not find video device with name [Integrated Webcam,Logitech HD Webcam C525] among source devices of type video.
    video=Integrated Webcam,Logitech HD Webcam C525: I/O error