Recherche avancée

Médias (91)

Autres articles (112)

  • 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 ;

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (13623)

  • h264pred : added AVX2 implementation for tm_vp8 16x16.

    18 mars 2017, par Mirage Abeysekara
    h264pred : added AVX2 implementation for tm_vp8 16x16.
    

    checkasm —bench results with 5000 runs

    pred16x16_tm_vp8_c : 302.8
    pred16x16_tm_vp8_mmx : 101.4
    pred16x16_tm_vp8_mmxext : 95.5
    pred16x16_tm_vp8_sse2 : 95.1
    pred16x16_tm_vp8_avx2 : 38.2

    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/x86/h264_intrapred.asm
    • [DH] libavcodec/x86/h264_intrapred_init.c
  • ffmpeg - Have troubling syncing up audio and video together

    15 février 2017, par zyeek

    I have a webcam and a separate mic. I want to record what is happening.

    It almost works, however the audio seems to play quickly and parts missing while playing over the video.

    This is the command I am currently using to get it partially working

    ffmpeg -thread_queue_size 1024 -f alsa -ac 1 -i plughw:1,0 -f video4linux2 -thread_queue_size 1024 -re -s 1280x720 -i /dev/video0 -r 25 -f avi -q:a 2 -acodec libmp3lame -ab 96k out.mp4

    I have tried other arguments, but unsure if it has to do with the formats I am using or incorrect parameter settings.

    Also, the next part would be how to stream it. Everytime I try going through rtp it complains about multiple streams. I tried doing html as well, but didn’t like the format. html html://localhost:50000/live_feed or rts rts://localhost:5000

    edit :

    I am running this on a rpi 3.

  • FFMPEG split video with equal frames in the splits....?

    17 janvier 2017, par Gurinderbeer Singh

    I am using FFMPEG to split a video file by using the following command :

    ffmpeg -i input.mp4 -c copy -segment_times 600,600 -f segment out%d.mp4

    This command divides video based on time.. But even if output splits are of same duration, number of frames are different in the splits..

    Is there a way of splitting a video file without recoding so that number of frames are equal in splitted files.?

    Even if it use some other tool than FFMPEG.

    For example : input.mp4 of duration 200 seconds has 5000 frames.

    Can we split this into :

    input1.mp4 having 2500 frames
    and input2.mp4 having 2500 frames.

    It doesn’t matter if duration of output splits is different..

    Please help.....!