Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (65)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10444)

  • ffmpeg - Extract Video filesize from virtual data

    18 décembre 2015, par Youssef El Gharbaoui

    I am trying to calculate a video filesize from its data using FFMPEG.

    Assuming that I have the following data in my disposal :

    • vcodec => mp4a.40.2
    • acodec => avc1.64001F
    • format_note => hd720
    • height => 720
    • width => 1280
    • ext => mp4
    • duration => 56 (seconds)

    Questions :

    1. Is there any mathematical formula that can extract the video
      filesize using the data above
    2. Is it possible to simulate and extract the filesize of a
      non-existing file using the data above
    3. If FFMPEG cannot accomplish what Im asking, what do you suggest ?

    Please let me know if you need any additional information.

    Thanks for your help.

  • Moov atom in android MeidaRecorder recorded data

    11 mars 2013, par mmmaaak

    I have a problem :

    I record data from camera using MediaRecorder in my Android app. I save it in socket, not in file. This data's length may be different. At the other side of socket connection, I save it in file. Connection may be interrupted at any unexpected moment. So after android socket disconnection I try to decode received data using ffmpeg. But as I understood, it cant find moov atom in this file. I've read some info about moov, so I think that MediaRecorder puts moov atom in the end of file. But if recording was interrupted, writing moov atom was skipped.

    I also have read that for data with unknown length (progressive loading, streaming) it is possible to write moov atom at the begining of the file.

    How to write my own moov data into the stream ? May I use MediaRecorder for this ? Or it is neccessary to do it manualy ? How to generate valid moov data ? If anybody has already solved this problem, please give me advice..

  • FFMPEG : Dumping YUV data into AVFrame structure

    13 janvier 2014, par Zax

    I'm trying to dump a YUV420 data into the AVFrame structure of FFMPEG. From the below link :

    http://ffmpeg.org/doxygen/trunk/structAVFrame.html, i can derive that i need to put my data into

    data[AV_NUM_DATA_POINTERS]

    using

    linesize [AV_NUM_DATA_POINTERS].

    The YUV data i'm trying to dump is YUV420 and the picture size is 416x240. So how do i dump/map this yuv data to AVFrame structures variable ? Iknow that linesize represents the stride i.e. i suppose the width of my picture, I have tried with some combinations but do not get the output.I kindly request you to help me map the buffer. Thanks in advance.