Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

  • 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

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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (4741)

  • avcodec/svq1enc : restrict Altivec acceleration to big-endian POWER configurations

    16 janvier, par Sean McGovern
    avcodec/svq1enc : restrict Altivec acceleration to big-endian POWER configurations
    

    This was disabled in da60b99a8857d5ca236f32c1799a066e0135a866 and then
    accidentally re-enabled in 172b0e2e88832822632841e8e0d3794f974cbc93.

    The code in question was never properly adapted for litte-endian mode.

    refs : trac/10955
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ppc/svq1enc_altivec.c
  • How to record playable video files in gstreamer even if recording is interrupted unexpectedly (e.g. power disconnects) ?

    16 septembre 2021, par Otter_warrior

    I have been recording video streams on my Jetson Xavier NX using a simple gstreamer pipeline such as this

    &#xA;

    gst-launch-1.0 -v \&#xA;nvarguscamerasrc sensor-id=0 ! \&#xA;&#x27;video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080, format=(string)NV12, framerate=(fraction)30/1&#x27; ! \&#xA;nvv4l2h265enc ! &#x27;video/x-h265, stream-format=(string)byte-stream&#x27; ! \&#xA;h265parse ! qtmux ! filesink location=video.mp4 -e&#xA;

    &#xA;

    All is working if the recording is interrupted by keyboard interrupt Ctrl &#x2B; C, but if the recording is interrupted unexpectedly (e.g. power gets disconnected) the resulting file has no playable stream, even if the file size is correct.

    &#xA;

    I know that mp4 recording needs to be stopped properly otherwise it won't have the necessary information at the end of the file, but I was wondering if there was any other gstreamer pipelines or final file formats that would allow for an H265 encoded video file to be playable even if the recording is ended unexpectedly.

    &#xA;

    It would be good even if the recorded file needed to be converted before being playable (e.g. with ffmpeg), as long as the information can be recovered without having to go through non-free mp4 recovery tools.

    &#xA;

  • lavu/tx : refactor power-of-two FFT

    10 avril 2021, par Lynne
    lavu/tx : refactor power-of-two FFT
    

    This commit refactors the power-of-two FFT, making it faster and
    halving the size of all tables, making the code much smaller on
    all systems.
    This removes the big/small pass split, because on modern systems
    the "big" pass is always faster, and even on older machines there
    is no measurable speed difference.

    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c