Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (44)

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

  • libavcodec/qsv.c : Linux-only code part has been moved to separate function in order...

    6 juillet 2015, par Ivan Uskov
    libavcodec/qsv.c : Linux-only code part has been moved to separate function in order to avoid the "ISO C90 forbids mixed declarations and code" compiler warning.
    

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

    • [DH] libavcodec/qsv.c
  • FFMPEG merge two files cause the video to freeze at the end of the first part

    17 janvier 2015, par Anas

    I am using FFMPEG to cut and merge video file, these are my commands :
    //split the video to three parts

    ffmpeg -i "input.mkv" -ss 00:00:00 -to 00:04:00 -c copy -map 0 -y out0.mkv
    ffmpeg -i "input.mkv" -ss 00:05:00 -to 00:22:00 -c copy -map 0 -y out1.mkv
    ffmpeg -i "input.mkv" -ss 00:23:00  -c copy -map 0 -y out2.mkv

    //merge these parts in one video again

    ffmpeg  -f concat -i mylist.txt -c copy  -y output.mkv

    //mylist.txt contains :

    file out0.mkv
    file out1.mkv
    file out2.mkv

    And everything works fine, except that the new merged video freeze for 5 seconds at the end of the first merged part, in the above example at sec 04:00 the screen pauses for 5 seconds and then the video continue.

    Do you know why this is happening ? is there a work around please help.

  • Can any part of an ffmpeg command use expressions ?

    6 avril 2022, par corgrath

    I am still learning how expressions work with ffmpeg, whether any part of a command can be using expression or not.

    &#xA;

    As an example, I have this command :

    &#xA;

    ffmpeg -y -i input.mp3 -af "sofalizer=sofa=ClubFritz1.sofa:type=freq:radius=2:speakers=&#x27;FL 45|FR 45|BL 45|BR 45&#x27;" output.mp3

    &#xA;

    (The file CubFritz1.sofa can by the way be downloaded here)

    &#xA;

    Which basically applies the sofalizer effect and specify that each channel should be heard / come from, the left side (45 degrees) of the audio.

    &#xA;

    This works as expected.

    &#xA;

    However, I cannot seem to get expressions working in the command at all.

    &#xA;

    For example this :

    &#xA;

    ffmpeg -y -i input.mp3 -af "sofalizer=sofa=ClubFritz1.sofa:type=freq:radius=2:speakers=&#x27;FL if(0, 45, 45)&#x27;|&#x27;FR if(0, 45, 45)&#x27;|&#x27;BL if(0, 45, 45)&#x27;|&#x27;BR if(0, 45, 45)&#x27;" output.mp3

    &#xA;

    Which does an if(0, 45, 45) as a test, so regardless the outcome should be 45, right ?

    &#xA;

    However, when I run this command, it does not seem to work anymore, meaning the sound is not purely coming from the left side.

    &#xA;

    I have even tried changing the location of the single &#x27; in the command without luck :

    &#xA;

    ffmpeg -y -i input.mp3 -af "sofalizer=sofa=ClubFritz1.sofa:type=freq:radius=2:speakers=FL &#x27;if(0, 45, 45)&#x27;|FR &#x27;if(0, 45, 45)&#x27;|BL &#x27;if(0, 45, 45)&#x27;|BR &#x27;if(0, 45, 45)&#x27;" output.mp3

    &#xA;

    My question is, what are the rules for getting expressions working in an ffmpeg command ?

    &#xA;

    How would the command be rewritten so that the if(0, 45, 45) works ?

    &#xA;