Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (95)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

Sur d’autres sites (9561)

  • ffmpeg command to GStreamer pipeline for srtp stream

    1er avril 2021, par Muhammet Ilendemli

    I would like to convert this working ffmpeg command to a GStreamer pipeline but I couldn't manage to get it working. Tried using srtpenc toset the key to a hex representation of the buffer and udpsink with the target host and port set.

    &#xA;&#xA;

    The command I currently have :

    &#xA;&#xA;

    ffmpeg -re -i &lt;<rtspurl>> -map 0:0 -vcodec h264_omx -pix_fmt yuv420p \&#xA;  -r 30 -f rawvideo -tune zerolatency -vf scale=1280:720 -b:v 300k \&#xA;  -bufsize 300k -payload_type 99 -ssrc &lt;<ssrc>> \&#xA;  -f rtp -srtp_out_suite AES_CM_128_HMAC_SHA1_80 \&#xA;  -srtp_out_params &lt;<base64key>> srtp://&lt;<targetip>>:&lt;<targetport>>?rtcpport=&lt;<targetport>>&amp;localrtcpport=&lt;<targetport>>&amp;pkt_size=1378&#xA;</targetport></targetport></targetport></targetip></base64key></ssrc></rtspurl>

    &#xA;&#xA;

    Some references :

    &#xA;&#xA;

    &#xA;

  • AWS ffmpeg-lambda-layer and concat protocol (Node.js)

    25 février 2021, par portik

    I am trying to concatenate two .mp3 files using ffmpeg lambda-layer. I have what I think is the correct command, but I struggle to represent it in code so that it is formatted correctly for the lambda layer. Here is a piece of code that I am struggling to get right :

    &#xA;

    spawnSync(&#xA;  &#x27;/opt/ffmpeg/ffmpeg&#x27;,&#xA;  [&#xA;    &#x27;-i&#x27;,&#xA;    &#x27;"concat:/tmp/pt1.mp3|/tmp/pt2.mp3"&#x27;,&#xA;    &#x27;-acodec&#x27;,&#xA;    &#x27;copy&#x27;,&#xA;    `/tmp/${fileName}`&#xA;  ],&#xA;  { stdio: &#x27;inherit&#x27; }&#xA;)&#xA;

    &#xA;

    The error I'm getting : "concat:/tmp/pt1.mp3|/tmp/pt2.mp3": No such file or directory.

    &#xA;

    I tried to list files in /tmp/ folder - both files listed in the input are there, not sure why lambda layer can't find them.

    &#xA;

    Similar question : https://lists.ffmpeg.org/pipermail/ffmpeg-user/2019-December/046299.html. Ffmpeg concatenate protocol documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol.

    &#xA;

    Thanks in advance !

    &#xA;

  • Compile ffmpeg on Ubuntu 13.10 with libfdk_aac

    26 février 2014, par nitsuj

    I tried this guide, but I have an error that permission is denied when I try to run a script from PHP using exec(). I think that this is because ffmpeg is in /root.

    How can I install this where my PHP script can access it ?