Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (61)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10443)

  • FFMPEG Error : Command not found - -c:v libx264

    26 juin 2023, par Mash

    I have a https input that I want to crop the top (control) and side (chat bar).

    


    I am using the -vf "crop=1600:980:0:1080" and this works fine.

    


    When I want to scale my cropped input by using
-vf "crop=1600:980:0:180,scale=1920:1080"

    


    I get an Error : Command not found - -c:v libx264

    


    Any ideas on what i am doing wrong here.

    


    Here is the ffmpeg part of the script :

    


    ffmpeg \
  -hide_banner -loglevel error \
  -nostdin \
  -s ${CAPTURE_SCREEN_RESOLUTION} \
  -r ${VIDEO_FRAMERATE} \
  -draw_mouse 0 \
  -f x11grab \
    -i ${DISPLAY} \
  -f pulse \
    -ac 2 \
    -i default \
    -vf "crop=1600:980:0:1080,scale=1920:1080" \
  -c:v libx264 \
    -pix_fmt yuv420p \
    -profile:v main \
    -preset slow \
    -x264opts "nal-hrd=cbr:no-scenecut" \
    -minrate ${VIDEO_BITRATE} \
    -maxrate ${VIDEO_BITRATE} \
    -g ${VIDEO_GOP} \
  -c:a aac \
    -b:a ${AUDIO_BITRATE} \
    -ac ${AUDIO_CHANNELS} \
    -ar ${AUDIO_SAMPLERATE} \
  -f flv ${RTMP_URL}


    


    I have also tried to -vf "crop=1600:980:0:1080;scale=1920:1080"

    


  • How to fix ‘FFMPEG not found’ in discord bot

    12 février 2019, par Travis Sova

    i want to make my discord bot join voice chat but every time i make it i get a error into log(cmd) saying ,FFMPEG not found, please help me.

    picture of the error : https://i.imgur.com/wTsvY4A.png

    this is the code :

    client.on('message', message => {
     // Voice only works in guilds, if the message does not come from a guild,
     // we ignore it
     if (!message.guild) return;

     if (message.content === '/join') {
       // Only try to join the sender's voice channel if they are in one themselves
       if (message.member.voiceChannel) {
         message.member.voiceChannel.join()
           .then(connection => { // Connection is an instance of VoiceConnection
             message.reply('I have successfully connected to the channel!');
           })
           .catch(console.log);
       } else {
         message.reply('You need to join a voice channel first!');
       }
     }
    });
  • x86inc : Prefer r14/r15 over r12/r13 on x86-64

    22 avril 2017, par Henrik Gramner
    x86inc : Prefer r14/r15 over r12/r13 on x86-64
    

    Due to a peculiarity in the ModR/M addressing encoding, the r12 and r13
    registers sometimes requires an additional byte when used as a base register.

    r14 and r15 doesn't have that issue, so prefer using them.

    • [DH] libavutil/x86/x86inc.asm