Recherche avancée

Médias (91)

Autres articles (102)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6976)

  • Need help on ffmpeg batch script

    14 août 2013, par Olung

    Trying to make a ffmpeg batch scripts that makes proress 422 proxy files from raw .mov files thats located in many subfolders. So far i got this :

    #!/bin/bash

    echo "drop source folder: "
    read source

    echo "drop destination folder: "
    read des

    find "$source" -name '*.mov' -exec sh -c 'ffmpeg -i "$0" -vcodec prores -profile:v 0 -an "$des/${0%%.mov}.mov"' {} \;
    exit;

    But it doesn't output to the destination folder, only the source folder and ask for an overwrite - not what I want.

    I guess it's a simple parameter error that maybe some of you can spot out ?

    All help is kindly appreciated !

  • How to extract a sequence of frames with ffmpeg and get it with subprocess.Popen

    4 novembre 2019, par Core taxxe

    Since reading single frames is kinda slow , i tried to extract multiple frames at once. Now i got the Problem that ffmpeg does not return a list but a bunch of bytes.
    os : win10
    python version 3.7.4
    ffmpeg extracting frames from mp4

           command = [self.FFMPEG_BINARY,
                      '-loglevel', 'fatal',
                      '-ss', str(datetime.timedelta(seconds=frame_index / self._fps)),
                      '-i', os.path.join(self._path, self._filename),
                      '-threads', str(self.THREAD_NUM),
                      '-vf', 'scale=%d:%d' % (self._resolution[0], self._resolution[1]),
                      '-vframes', str(num_frames),
                      '-f', 'image2pipe',
                      '-pix_fmt', 'rgb24',
                      '-vcodec', 'rawvideo', '-']

           pipe = subprocess.Popen(command, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
           tmplist = []
           for _ in range(num_frames):
               output, err = pipe.communicate()
               tmplist.append(output)
               if err: print('error', err); return None;
               pygame.image.frombuffer(output, self._resolution, "RGB")

           return tmplist

    Expected : a list of pygame Surfaces
    Got : ValueError : Buffer length does not equal format and resolution size

  • Where does FFMPEG store temporary files in Linux ?

    8 juillet 2023, par 001121100

    I canceled the conversion of a very large file in ffmpeg. The incomplete file is taking up almost 200GB on my disk but it does not exist in the directory I was working in and I can't find it anywhere. Where does ffmpeg store temporary, incomplete, or canceled files ?

    


    (I've had a similar problem in the past when running a file recovery program - I canceled the recovery and the files disappeared. They are simply taking up "ghost" space on the directory and can't be located.)

    


    I've tried searching for the filename, clearing the trash, rebooting.