Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (26)

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

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

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

Sur d’autres sites (5232)

  • Bash script that lists files in a directory doesn't work

    28 juillet 2018, par Fabrizio Gabriele

    I made a bash script because I need to convert a lot of files in a directory from .MOV to .mp4 format.
    I created this script for the purpose :

    #!/bin/bash

    touch .lista
    ls -1 "$1" | grep -i .MOV > .lista
    list= `pwd`/.lista
    cd "$1"
    while read -r line;
       do filename=${line%????}
       ffmpeg -i "$line" -vcodec copy -acodec copy "$filename.mp4"; done < $list
    rm .lista

    This script is supposed to convert me each .MOV file into the directory indicated by $1, but it doesn’t work, it converts me only one file, then it terminates. I can’t understand why. What’s wrong with that ?

  • Android video encoding with fr and resolution manipulation

    24 février 2017, par apSTRK

    I want to be able to take a video recorded with an Android device and encode it to a new Resolution and Frame Rate using my app. The purpose is to upload a much smaller version of the original video (in size), since this will be videos 30 min long or more.

    So far, I’ve read of people saying FFmpeg is they way to go. However, the documentation seems to be lacking.

    I have also considered using http opencv http://opencv.org/platforms/android.html

    Considering I need to manipulate the video resolution and frame rate, which tool do you think can do such things better ? Are there any other technologies to consider ?

    An important question is, since this will be long videos, is it reasonable to do the encoding in an android device (Consider power resources, time, etc.)

    Thanks in advance !

  • hlsenc : remove the AVIOContext for the playlist from the muxer context

    20 février 2015, par Hendrik Leppkes
    hlsenc : remove the AVIOContext for the playlist from the muxer context
    

    Its only used in one function, having it in the context serves no purpose.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/hlsenc.c