Advanced search

Medias (1)

Tag: - Tags -/belgique

Other articles (81)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

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

On other websites (8846)

  • ffmpeg compilation in VS2005 assembly code in mathops.h doesn't compile

    2 July 2013, by NiRR

    i'm trying to compile ffmpeg in my vs2005 but i'm stcuk on the following error:

    libavcodec\x86/mathops.h(39) : error C2143: syntax error : missing ')' before ':'

    the code its triyng to compile is

     __asm__ (
       "imull %3               \n\t"
       "shrdl %4, %%edx, %%eax \n\t"
       :"=a"(rt), "=d"(dummy)
       :"a"(a), "rm"(b), "ci"((uint8_t)shift)
    );
  • librsvgdec: Fix frame clearing code

    1 February 2018, by Calvin Walton
    librsvgdec: Fix frame clearing code
    

    The existing code attempts to clear the frame by painting in OVER
    mode with transparent black - which is a no-op. As a result if you
    have many input frames (e.g. you're using a sequence of svg files),
    you'll start to see new frames drawn over old frames as memory gets
    re-used.

    Switch the code to paint using the CLEAR compositing operator,
    which fills every channel with 0 values (setting a source colour
    is not required).

    • [DH] libavcodec/librsvgdec.c
  • Code must find all MP4 files within subdirectory to compress using ffmpeg

    22 June 2019, by ellipsical

    I have a drive with a lot of MP4 files which are tough to go through folder by folder and compress.

    I’m trying to make a script that runs in terminal that will open a designated folder, find all .mp4 files in the subfolder, and compress the files using specs I designate with ffmpeg. Obviously, the output files should be much lower in size if done right. I’m drafting a code which I have an idea about below but I’m not too good with BASH and/or PERL.

    for f in $(find ../ -iname '*.avi'); do
     n=$(echo $f|sed -e 's/.avi/_cbr.mp4/i');
     echo "ffmpeg [options] -i $f $n";
    done

    output:

    ffmpeg [options] -i ../1hourjob/videncode/sound10s.avi ../1hourjob/videncode/sound10s_cbr.mp4
    ffmpeg [options] -i ../1hourjob/videncode/t003.avi ../1hourjob/videncode/t003_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/Masha.avi ../ffmpeg/Masha_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/window.avi ../ffmpeg/window_cbr.mp4

    I’m wondering if I can even make some sort of GUI for this too. I feel a bit lost.