Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (57)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

Sur d’autres sites (12175)

  • ffmpeg sound going out of sync with -concat

    12 septembre 2011, par mushu

    I'm having a problem with the concat command of ffmpeg where the sound of the concatenated video goes out of synch. The effects of this seem to be even worse in VLC and Quicktime Player than Windows Media Player (to my suprise).

    My code is :
    Where capturePaths is a python list of paths to various video files to be concatenated.
    All the files are avi.

    concatStr = ""
    for path in capturePaths:
       concatStr += path + '|'
       concatStr = concatStr[:-1]  

    os.system( ffmpeg + ''' -i concat:"''' + concatStr + '''" -sameq -r 24 -ar 48000 -y ''' + outputPath )

    Any ideas, examples, solutions ?

  • no sound in FrameRecorder / FFmpegFrameRecorder output file

    3 octobre 2012, par SergeyD

    this is the code i'm using to resize a video in android with JavaCV and ffmpeg -

    FFmpegFrameGrabber grabber = new FmpegFrameGrabber("/sdcard/DCIM/100MEDIA/VIDEO0066.mp4");
           grabber.start();

           int w = (int)grabber.getImageWidth()/2;
           int h = (int)grabber.getImageHeight()/2;        

           if (w%2 != 0) w=w-1;
           if (h%2 != 0) h=h-1;

           FrameRecorder recorder = new FFmpegFrameRecorder("/sdcard/DCIM/output.mov", w, h ,grabber.getAudioChannels());

           recorder.setVideoCodec(avcodec.CODEC_ID_MPEG4);
           recorder.setPixelFormat(avutil.PIX_FMT_YUV420P);
           recorder.setAudioCodec(avcodec.CODEC_ID_PCM_S16LE);
           recorder.start();

           Frame frame = null;
           while ((frame = grabber.grabFrame()) != null)
           {
               IplImage source = frame.image;
               if (source!=null)
               {
               IplImage destination = cvCreateImage(cvSize(w , h), source.depth(), source.nChannels() );
               cvResize(source, destination);
               frame.image = destination;
               recorder.record(frame);

               }
           }

    If i use the original width and height than the video is with sound, but when i use w/2 and h/2 the output file is without sound.
    Please advise.

  • ffmpeg : remove all sound which is center-panned to both channels

    11 février 2014, par naveen

    Using ffmpeg, how to remove all sound that is center-panned to both channels ("equal" in strength between left and right). Can we do this in ffmpeg ?