Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (63)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8054)

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

  • Changed : Adding chapters using an array of chapter parts now adds the part counter to the filename before the extension.

    6 juin 2012, par Grandt
    Changed : Adding chapters using an array of chapter parts now adds the part counter to the filename before the extension.