Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (111)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10729)

  • dnn_backend_openvino.c : add version mismatch reminder

    18 janvier 2021, par Guo, Yejun
    dnn_backend_openvino.c : add version mismatch reminder
    

    The OpenVINO model file format changes when OpenVINO goes to a new
    release, it does not work if the versions between model file and
    runtime are mismatched.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
  • Flutter ffmpeg_kit_flutter : get FFmpegKit.executeAsync error

    2 août 2022, par Pitu Werno

    I have prepared a test program to run FFMPEG command and it successfully run -i "/data/user/0/com.example.test/cache/file_picker/test.mp4" -c:v mpeg4 "/data/user/0/com.example.test/cache/test-1639310478143.mp4" command. This is just to ensure that ffmpeg_kit_flutter was loaded properly and all permissions has been obtained.

    &#xA;

    But, I have problem executing -i "source.mp4" -vf fps=30 "thumb%03d.jpg" -hide_banner command. The command itself is working well when I run it on windows, for example :

    &#xA;

    md frame1&#xA;ffmpeg -i "test.mp4" -vf fps=30 frame1/thumb%%04d.jpg -hide_banner&#xA;

    &#xA;

    (note : double % is to escape the % in windows batch file)

    &#xA;

    This is what I do in flutter on android :

    &#xA;

      &#xA;
    1. Create temporary folder.
    2. &#xA;

    3. Execute :
    4. &#xA;

    &#xA;

        String command = &#x27;-i "/data/user/0/com.example.test/cache/file_picker/test.mp4" -vf fps=30 "/data/user/0/com.example.test/cache/tmp-1639309602536/thumb%03d.jpg" -hide_banner&#x27;;&#xA;    FFmpegKit.executeAsync(command, (session) async {&#xA;        final returnCode = await session.getReturnCode();&#xA;        if (ReturnCode.isSuccess(returnCode)) {&#xA;            //ok&#xA;        } else if (ReturnCode.isCancel(returnCode)) {&#xA;            //cancelled&#xA;        } else {&#xA;            //error&#xA;        }&#xA;    });&#xA;

    &#xA;

    The proses is not working (always going to the error part). My questions are :

    &#xA;

      &#xA;
    1. What is the difference between running that command on windows and android ? Why it works on windows but not working on android ?
    2. &#xA;

    3. How can I get the explanation about any FFMPEG error ? In my case, I only know that wasn't working, but I have no clue why.
    4. &#xA;

    &#xA;

  • Revision 28582778b75a9484c64158ba8dd4764475e314b9 : Documentation des iterateurs Iter et IterSQL Utiliser protected plutot que ...

    16 décembre 2010, par Cerdic — Log

    Documentation des iterateurs Iter et IterSQL Utiliser protected plutot que private, pour permettre des surcharges eventuelles proteger les 3 proprietes de Iter, qui ne doivent pas etre accedees en direct Ajout des proprietes pos et total qui memorisent la position courant et le nombre total de (...)