Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (43)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (7234)

  • How to get rec script of SOX to work on Android ?

    1er mai 2013, par Arif Nadeem

    I built sox for Android and I am using the generated binary files i.e. sox, rec, play and soxi generated directly in my app by installing them as binaries within my app.

    I am able to invoke commands using sox directly however I have a problem in invoking rec command.

    I used the following command, rec -r 8000 -c 2 output.wav
    But it fails saying that sox is not found or sox is expected but is not found.

    The above rec command works perfectly in Ubuntu when I use it in command line

    Please note that I am able to use operation related to sox binary successfully, but I am unable to use commands related to rec binary.

    Initially I thought the problem may be because of permissions imposed by Android so I included these permissions in manifest.xml but to no avail.

    I did some research and got this link, it says in section Using Sox to Play and Record that there might be some Linux systems which do not accept rec command directly.

    I followed his suggestion and appended my commands with padsp etc, but it still doesn't work.

    So my question is how do I invoke rec command successfully on Android system, has anyone tried this before ?

  • avformat/mxfdec : Detect XYZ pixel format for digital cinema files

    4 mars 2015, par Vilius Grigaliūnas
    avformat/mxfdec : Detect XYZ pixel format for digital cinema files
    

    While the native jpeg2000 decoder can determine pixel format correctly
    from the codestream, libopenjpeg wrapper cannot. To make sure that
    the output is correct when using libopenjpeg to decode digital
    cinema files, we do detection from the metadata included in the MXF
    wrapper.

    If the container has "JPEG 2000 Coding Parameters" metadata element
    with Rsiz value set to one of digital cinema profiles, we can safely
    assume that the given input file is DCI compliant, therefore the
    pixel format should be XYZ.

    Reviewed-by : Tomas Härdin <tomas.hardin@codemill.se>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mxfdec.c
  • Special invisible frames in the beginning of the avi-files. How to recognize/handle them correctly ?

    20 avril 2018, par bukkojot

    I wrote simple video editing software, it just splits video by keyframes and nothing more. It works fine, until I found 1 strange file.

    Here exists 1 "invisible frame" with 2 NALs : SPS and PPS. If I remove this single frame, whole other file is unreadable. Other frames marked as keyframes, but not have this SPS and PPS headers.

    strange file

    If you look at a normal file encoded with the same codec, then you see these special headers are included in each keyframe :

    good file

    Since my program just took and cut the frames from the beginning of the file, then such a file just stopped working ! I try to do the same with ffmpeg :

         ffmpeg -ss 10:00 -i file.avi -c copy -t 10 out.avi

    And also got broken file !

    I checked reference for AVI files and don’t see here any notes about special handling of such invisible frames. What I should read/do to handle such files properly ?