Recherche avancée

Médias (91)

Autres articles (50)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7171)

  • fixed - ffmpeg output file is too large

    14 mai 2017, par David Page

    I want to burn a subtitle file(.srt) to a mp4 video.My command is :

    ffmpeg -i input.mp4 -c:v mpeg4 -q:v 1 -vf subtitles=input.srt out.mp4

    It output a video with a good quality,but its size is 1.12GB while the input file is 213MB.

    I think the problem is kbps of output file is too high.the bitrate of input file is 568 kb/s but the output file is 3154 kb/s.

    So I want to set the kps,now here is my code :

    ffmpeg -i input.mp4 -b:v 569k -minrate 568k -maxrate 570k -c:v mpeg4 -q:v 1 -vf subtitles=input.srt out.mp4

    Although the output file become smaller(538MB),the video’s quality is awful(Compare with input file)...
    So how to make the output file smaller and in good quality ?Thanks.

  • Anomalie #4543 : Accessibilité des chargements ajax (live regions)

    9 septembre 2020, par RastaPopoulos ♥

    Ah là ya un peu d’explication :
    https://disic.github.io/guide-developpeur/9-utiliser-aria.html

    Bien utilisée, cette propriété est une solution robuste et efficace pour gérer les zones de mise à jour dynamique, par exemple un panier d’achats affiché dans la page.

    Mais attention : puisque la zone contrôlée par aria-live va être vocalisée, il convient de l’utiliser avec précaution dès que cette zone va contenir beaucoup de contenus.

    Par exemple, imaginons un moteur de recherche qui afficherait ses résultats dans la même page via AJAX. L’utilisation de aria-live sur la zone mise à jour risque d’être particulièrement lourde et contre-indiquée. Préférez une prise de focus sur la zone mise à jour en résultat de la fonctionnalité de recherche afin de simuler un rechargement de page classique par exemple.

    Donc pour tout rechargement ajax suite à un clic (liens rechargeant un bloc, ou validation de formulaire), il faudrait retirer l’attribut et "juste" placer le focus au début du bloc. Est-ce déjà le cas aussi ?

  • configure : Don’t pass -mthumb or -march= to MSVC

    28 mai 2013, par Martin Storsjö
    configure : Don’t pass -mthumb or -march= to MSVC
    

    The modern MSVC for ARM always builds for thumb, and it can’t be
    disabled.

    Also just use the default arch instead of trying to map the -march
    parameter to MSVC’s -arch parameter (which only takes the values
    ARMv7VE and VFPv4).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure