Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (54)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (9935)

  • Merge commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’

    13 avril 2014, par Michael Niedermayer
    Merge commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’
    

    * commit ’d4a8a86c6863ecea208fa2f774690b6df4b5bc71’ :
    doc : Libavfilter English cleanup

    Conflicts :
    doc/filters.texi
    doc/libavfilter.texi

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi
  • Ffmpeg and php about

    30 septembre 2018, par ferit

    sorry for my english :)
    hello everyone i work poject on ffmpeg with php but i have little problem.
    i use this code,

    youtube-dl -f "mp4" -g "[youtubeurl]"

    output of command use also output as url="https://"

    ffmpeg -i "output" ...

    this command is running on the command line but when i used on
    php with exec or shel_exec(ffmpeg.exe -i "output" ...); not running.
    what is yours think why not working on php ?
    example i use this code

    exec("...",$output);
    var_dump($output);

    when i look this command everythink is okay but not as it appears
    OS:WİN10

    also shel_exec(ffmpeg.exe -i "folder/asd.mp4" ...); work.

    i think problem is i use url on my php code but on cmd everythink is normal

  • ffmpeg - converting one audio track of a multi-track mp4

    30 décembre 2023, par Shaun.M

    I'm having a few mp4 with two audio tracks,&#xA;an english one in aac and a french one in dts.

    &#xA;

    Now I want to convert only the french dts to eac3 with a single ffmpeg command.

    &#xA;

    I use

    &#xA;

    ffmpeg -hide_banner -i input.mp4 ^&#xA;             -map_metadata -1 ^&#xA;             -map 0:0 -c:v copy ^&#xA;             -map 0:1 -c:a copy ^&#xA;             -map 0:2 -c:a eac3 -b:a 1536k ^&#xA;             -metadata:s:a:0 language=eng ^&#xA;             -metadata:s:a:0 title="Stereo" ^&#xA;             -metadata:s:a:1 language=fra ^&#xA;             -metadata:s:a:1 title="Stereo" ^&#xA;output.mp4&#xA;

    &#xA;

    This works quite nice, but it converts both audio tracks to eac3, instead of leaving the first one untouched ...&#xA;What's wrong in the command ?

    &#xA;

    (ffmpeg version 2023-12-23-git-f5f414d9c4-full_build-www.gyan.dev under Windows 10)

    &#xA;