Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (18)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6764)

  • movenc : Timecode in MP4 Although MP4 does not have a concrete specification to store...

    21 janvier 2016, par Syed Andaleeb Roomy
    movenc : Timecode in MP4 Although MP4 does not have a concrete specification to store timecode information, the following technical note from Apple describes a way to achieve this via timecode track, similar to how it is done for MOV files.
    

    https://developer.apple.com/library/mac/technotes/tn2174/_index.html

    - Enabled creation of timecode tracks for MP4 in the same way as MOV.
    - Used nmhd as media information header of timecode track of MP4 instead
    of gmhd used in MOV, thus avoiding tcmi also, as recommended above.
    - Bypassed adding source reference field for MP4, as suggested above.

    Issue : https://trac.ffmpeg.org/ticket/4704

    Signed-off-by : Syed Andaleeb Roomy <andaleebcse@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
  • Why use -vframes and -ss to get thumbnail image from video ? [migrated]

    28 octobre 2014, par johnny92

    I am using this argument to FFmpeg to get a thumbnail image from a video file :

    ffmpeg -i input.mp4 -vframes 1 -s 320x240 -ss 10 output.jpg

    I understand that -ss 10 tells FFmpeg to capture the thumbnail image at the 10th second, but what is the purpose of -vframes 1 ?

  • Android Camera2 API record video with MJPEG codec in an AVI container

    6 juin 2018, par Hadji

    I am working on a project where I have to record a video and process it frame by frame (after recording).

    I managed to process frames while recording but Android Camera2 API doesn’t allow it as I am taking a highspeed video (240 FPS).
    Then, I decided to use OpenCV4Android’s VideoCapture but there is no way to open a video with VideoCapture unless it is a video with a MJPEG codec in an AVI container according to Convert Video to MJPEG/ AVI with FFMPEG.
    As that process take a lot of time and sometimes there frames loss while converting, I decided to find something better.

    I found a tutorial which describes how to Compile OpenCV with FFMPEG support but it doesn’t help at all.

    Finally I want to know if there a way to use android MediaRecorder and save video with MJPEG codec and AVI container.

    Thanks.