Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (27)

  • 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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (4017)

  • fftools/textformat/tw_avio : Remove unused private class

    14 avril, par Andreas Rheinhardt
    fftools/textformat/tw_avio : Remove unused private class
    

    This AVTextWriter does not have any options.

    Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/textformat/tw_avio.c
  • Class "FFMpeg\FFMpeg" not found

    16 août 2024, par Saeed Eisakhani

    I installed ffmpeg on xampp by COMPOSER. I installed FFMPEG on windows before.&#xA;enter image description here

    &#xA;

    Then with the command composer require php-ffmpeg/php-ffmpeg installed php-ffmpeg&#xA;enter image description here

    &#xA;

    I use code below (from php-ffmpeg github) for a test but this does not work

    &#xA;

    &lt;?php&#xA;&#xA;require &#x27;../../phpMyAdmin/vendor/autoload.php&#x27;;&#xA;&#xA;$ffmpeg = FFMpeg\FFMpeg::create(); // line 5 that error referees to &#xA;$video = $ffmpeg->open(&#x27;video.mpg&#x27;);&#xA;$video&#xA;    ->filters()&#xA;    ->resize(new FFMpeg\Coordinate\Dimension(320, 240))&#xA;    ->synchronize();&#xA;$video&#xA;    ->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(10))&#xA;    ->save(&#x27;frame.jpg&#x27;);&#xA;$video&#xA;    ->save(new FFMpeg\Format\Video\X264(), &#x27;export-x264.mp4&#x27;)&#xA;    ->save(new FFMpeg\Format\Video\WMV(), &#x27;export-wmv.wmv&#x27;)&#xA;    ->save(new FFMpeg\Format\Video\WebM(), &#x27;export-webm.webm&#x27;);&#xA;&#xA;?>&#xA;

    &#xA;

    This is the error I encounter.&#xA;enter image description here

    &#xA;

    I read many and many similar questions but almost all of them suggest require &#x27;../../phpMyAdmin/vendor/autoload.php&#x27;; that I have it in my code.

    &#xA;

  • FFPMEG command to record screen works only from cmd on windows but not from my Java class

    21 mars 2024, par Youssef Hammouma

    i have a JUNIT test that uses a Java class called ScreenRecordingWatcher where i specified my ffpmeg command to record the computer when my test fails.

    &#xA;

    But unfortunately, my command only works from my cmd and not from my class, On both sides it generates successfully my file, but when it is generated from my Java class, the file is not readable from my windows player (0xc10100be error).

    &#xA;

    Here is the command i am using :

    &#xA;

    C:\outils\ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe -f gdigrab -framerate 30 -i desktop -c:v h264_nvenc -qp 0 C:\outils\video\output.mkv&#xA;

    &#xA;

    Here is the same command from my class :

    &#xA;

    public class ScreenRecordingWatcher extends TestWatcher {&#xA;&#xA;private static final String FFMPEG_PATH = "C:\\outils\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe";&#xA;private static final String OUTPUT_FILE = "C:\\outils\\video\\fichier.mkv";&#xA;private boolean testFailed = false;&#xA;&#xA;@Override&#xA;protected void failed(Throwable e, Description description) {&#xA;&#xA;    super.failed(e, description);&#xA;    testFailed = true;&#xA;}&#xA;&#xA;@Override&#xA;protected void finished(Description description) {&#xA;    super.finished(description);&#xA;    if (testFailed) {&#xA;        startRecording();&#xA;&#xA;        try {&#xA;            Thread.sleep(5000);&#xA;&#xA;        } catch (InterruptedException e) {&#xA;            throw new RuntimeException(e);&#xA;        }&#xA;        stopRecording();&#xA;    }&#xA;}&#xA;&#xA;private void startRecording() {&#xA;    String[] command = { FFMPEG_PATH, "-f", "gdigrab", "-framerate", "30", "-i", "desktop", "-c:v", "h264_nvenc", "-qp", "0", OUTPUT_FILE };&#xA;&#xA;    System.out.println(Arrays.toString(command));&#xA;    ProcessBuilder builder = new ProcessBuilder(command);&#xA;    try {&#xA;        builder.start();&#xA;    } catch (IOException e) {&#xA;        e.printStackTrace();&#xA;    }&#xA;}&#xA;&#xA;private void stopRecording() {&#xA;    String[] command = { "tskill", "ffmpeg" };&#xA;    ProcessBuilder builder = new ProcessBuilder(command);&#xA;    try {&#xA;        builder.start();&#xA;    } catch (IOException e) {&#xA;        throw new RuntimeException(e);&#xA;    }&#xA;}&#xA;

    &#xA;

    }

    &#xA;

    Does someone have an idea of why it executes well from my cmd but not from my class ?

    &#xA;

    Thank you in advance

    &#xA;