Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (48)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

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

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

    


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


    


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

    


    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.

    


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

    


    Thanks in advance !

    


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

    



    The command I currently have :

    



    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;