Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (66)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12046)

  • Create a 44-byte header with ffmpeg

    13 juillet 2015, par Joe Allen

    I made a program using ffmpeg libraries that converts an audio file to a wav file. Except the only problem is that it doesn’t create a 44-byte header. When input the file into Kaldi Speech Recognition, it produces the error :

    ERROR (online2-wav-nnet2-latgen-faster:Read4ByteTag():wave-reader.cc:74) WaveData: expected 4-byte chunk-name, got read errror

    I ran the file thru shntool and it reports a 78-byte header. Is there anyway I can get the standard 44-byte header using ffmpeg libraries ?

  • Anomalie #3216 (Nouveau) : Cron ne se déclenchant plus ?

    15 mai 2014, par Maïeul Rouquette

    Depuis le passage à 3.0.13 certaines tâches cron, peut-être toutes, semblent ne plus de déclencher, sur un site SPIP standard avec en moyennne 370 visites/jour.

    Je précise que si j’execute manuellement via la liste des travaux, la tâche est bien effectuée. Cf http://contrib.spip.net/Le-plugin-saveauto-sauvegarde-automatique-de-la-base#forum475405

  • Using ffmpeg with not consecutive numbered files

    12 septembre 2014, par lbedogni

    I am using ffmpeg to produce a video starting from a set of png images. However, the images I have are numbered like this :

    image_D5_C0_F4.png
    image_D10_C0_F4.png
    image_D15_C0_F4.png
    image_D20_C0_F4.png

    and so on. Basically, everything remains the same, but the inner part changes. My ffmpeg command looks like this :

    ffmpeg -framerate 8 -start_number 5 -i img/image_%02d_C0_F4.png -c:v libx264 -r 30 -s 1200x900 -pix_fmt yuv420p out.mp4

    but obviously it does not work. I looked into the manual to find an option that allow me to specify a starting number (5 in this case) and a standard increment (again, 5), so to catch 5,10,15,20 etc.

    Any idea on how to solve this ? I know I can handle everything with a script to rename all the files, but I wanted to check whether ffmpeg has the needed option in the first place.

    Thanks