Recherche avancée

Médias (91)

Autres articles (72)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (11041)

  • configure : fix build issue of vf_dnn_processing.c when —disable-swscale

    2 avril 2020, par Guo, Yejun
    configure : fix build issue of vf_dnn_processing.c when —disable-swscale
    

    vf_dnn_processing.c recently changed to use swscale to trasfer data
    between AVFrame and dnn model.

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

    • [DH] configure
  • Android apk file too big when using FFMPeg encoder library

    9 novembre 2022, par Diego Perez

    I'm developing an app which creates x264 videos with the following library :

    &#xA;&#xA;

    com.arthenica:mobile-ffmpeg-full:4.2.2.LTS&#xA;

    &#xA;&#xA;

    but the result apk file is too big ( 71mb), so I tried :

    &#xA;&#xA;

    com.arthenica:mobile-ffmpeg-min-gpl:4.2.2.LTS&#xA;

    &#xA;&#xA;

    and this way, as the library downloads only a few codecs -included the ones I need- apk size was reduced to 49mb, what is much better, but still looks too big to me, so I'd need to know if any of you know a better way to reduce apk size, because people generally refuse to download such big apps

    &#xA;&#xA;

    Regarding the rest of the app (drawables, resources and so) they're well optimized, because if I remove this library and rebuild, the size of the app drops to 10mb

    &#xA;&#xA;

    I was reading this question :&#xA;FFMPEG Android Library Increase Size

    &#xA;&#xA;

    and user S.R suggests to compress all cpu architecture models in one archive file and extract target cpu lib based on cpu model on app's directory and load ffmpeg from there, but I really don't know how to do that.

    &#xA;&#xA;

    I'm checking my app's folder structure and noticed there are this next folders regarding ffmpeg lib :

    &#xA;&#xA;

    arm64-v8a => ~16mb&#xA;armeabi-v7a => ~29mb&#xA;x86 => ~17mb&#xA;x86_64 => ~21mb&#xA;

    &#xA;&#xA;

    But not sure if I could remove any of them, and as you can see armeabi-v7a is the largest.

    &#xA;&#xA;

    enter image description here

    &#xA;

  • FFmpeg truncates untrunc'ed video

    18 mars 2020, par petrpulc

    Background : Colleague's Panasonic consumer camera had issues with high-capacity SD card and yielded two different types of truncated files (mp4 and mdt) with both header and index corrupted. Both were "fixable" with following steps :

    &#xA;&#xA;

      &#xA;
    1. Locate with hex editor the ascii sequence "mdat" in both a truncated and a corresponding known good file. In mp4 the "mdat" is quite deep in the file as it contains some (but bad) headers, the mdt type almost starts with it.
    2. &#xA;

    3. Replace everything up to the "mdat" sequence with known good header. BUT this also means that metadata on length are copied over.
    4. &#xA;

    5. Run https://github.com/ponchio/untrunc on the file with corrected header (it refused to run on original files).
    6. &#xA;

    7. Profit ! VLC plays the file fine, ffprobe shows correct length. BUT ffmpeg encoding stops at the end timecode of the file I taken the known good header from in step 2.
    8. &#xA;

    9. A somewhat ugly solution is to recode the file in VLC (video copy seems to be breaking file up again).
    10. &#xA;

    &#xA;&#xA;

    I am wondering if I overlooked something ; big time. I guess I do, but simple timecode operations on input file do not seem to have any effect at all.

    &#xA;&#xA;

    Is there a way to persuade ffmpeg to encode the whole file that ffprobe and VLC see ?

    &#xA;&#xA;

    Files may be provided for analysis on personal basis only, sorry.

    &#xA;