Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (53)

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

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7948)

  • SharedArrayBuffer for ffmpeg not working with React-Native

    31 août 2022, par Peter Garcia

    I am currently working on a React Native App using ffmpeg.wasm

    


    but for some reason, SharedArrayBuffer is still not working. My React version is "react" : "17.0.2", and React-dom is "17.0.2",. My Chrome version is Version 104.0.5112.101 (Official Build) (arm64)

    


    I've been racking my brain about why this isn't working on my React Native app since I did a test app and it works there but on this app, it doesn't.

    


    I am getting this error whenever I run ffmpeg.wasm :

    


    Uncaught (in promise) ReferenceError: SharedArrayBuffer is not defined
at aa35944d-451a-411f-bf18-4e42f7bbceb0:22:175
at Object.load (createFFmpeg.js:64:1)


    


    I cannot use Cross-Origin Opener headers :

    


    Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp


    


    because our app calls from a lot of outside APIs and it breaks them.

    


    Any help would be greatly appreciated.

    


  • How to fix this FFMPEG command to record audio as well ?

    19 mai 2018, par James Kowalski

    I am trying to fix this FFMPEG command to record audio.

    I have tried using the parts recommended on the official stackoverflow site but they didn’t work

    Orignal Command

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f flv "%s"' % (xvfb.new_display, info['destination'])

    Command with attempted audio

    ffmpeg_stream = '/usr/bin/ffmpeg -f x11grab -s 1280x720 -r 24 -i :%d+nomouse -c:v libx264 -preset superfast -pix_fmt yuv420p -s 1280x720 -threads 0 -f alsa -ac 2 -i hw:0 -f flv "%s"' % (xvfb.new_display, info['destination'])

  • How to build ffmpeg as a Position independent executable (PIE) or PIC on Android ?

    22 avril 2016, par Parth Doshi

    I have checked out the latest source of ffmpeg from the official website. I now want to compile and build ffmpeg as a position independent executable.

    Here is what my configure command looks like

    ./configure --prefix=/usr/local --enable-gpl --enable-pic --enable-nonfree --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265

    I have added the option --enable-pic to make it a PIE. However when the build process completes successfully and when I do a hardening check as follows then I get below output

    hardening-check ffmpeg

    ffmpeg:
    Position Independent Executable: no, normal executable!
    Stack protected: yes
    Fortify Source functions: yes (some protected functions found)
    Read-only relocations: yes
    Immediate binding: no, not found!

    This tells me that ffmpeg is still not a PIE. Can anyone tell me what am I missing here ? Is there any other changes that need to be done for adding PIE support.