Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (101)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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

Sur d’autres sites (11324)

  • avcodec/libxevd : Fix "if (ret = ff_foo() < 0)" precedence problem

    27 février 2024, par Andreas Rheinhardt
    avcodec/libxevd : Fix "if (ret = ff_foo() < 0)" precedence problem
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libxevd.c
  • Revision 9f9e30d7bf : Merge "[spatial svc] Make spatial svc working for one pass rate control"

    5 novembre 2014, par Minghai Shang

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.c



    Merge "[spatial svc] Make spatial svc working for one pass rate control"

  • How can I fix sync problem for captured audio video from pi camera and external mic

    23 juin 2022, par Furkan Balıkçı

    I'm trying to capture video and audio using FFmpeg. However, in the recorded video, the sound is ahead of the video. I tried , -asyn 1, use_wallclock_timestamp 1, different video and audio codecs but nothing changed. itoffset seems to fix the issues, but it's not stable either. I also tried video4linux2 instead of Raspivid, but that didn't work either. I've searched the forums many times for similar questions, tried methods that were said to work but I'm still having problems. Maybe there is something I missed after trying thousands of different scripts.

    &#xA;

    The script I use is as follows :

    &#xA;

    raspivid -t 0 -a 1024 -a "TEST" -a 12 -ae 32 -n -w 1280 -h 720 -fps 30 -b 2000000 -o - | ffmpeg -y -framerate 30 -i - -f alsa -ar 16000 -i plughw:0 -c:a aac -c:v copy -map 0:0 -map 1:0 -fflags nobuffer test.mp4&#xA;

    &#xA;

    Anyone able to find a solution to the problem ?

    &#xA;