Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (74)

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

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

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

  • Convert raw PCM data to video ?

    2 mai 2013, par user1801247

    I have file consisting of raw PCM data (no headers). I have been able to successfully play this file by opening it in Audacity (by importing the raw data).

    This file (as part of a game), apparently contains a video at the end of the file.

    I was hoping to be able to play this PCM data as a video without regard for headers as Audacity was able to do for audio.

    I took a look at ffmpeg to convert the .wav/.pcm to .mov, but there are no examples of going from audio -> video (an understandably rare scenario).

    Are there any tools out there to play my data as a video, without regard for validity ?

  • Extract the middle frame of a video in Python using ffmpeg ?

    10 juin 2014, par ensnare

    I have a collection of video files for which I’d like to generate thumbnails. How can I extract the middle frame of the video in Python ?

    If I execute :

    ffmpeg -i /tmp/0.mts

    I get a line returned to the shell that says :

    Duration: 00:00:04.49, start: 1.016689, bitrate: 25234 kb/s

    Maybe I could extract the timestamp after the duration and somehow divide that by 2 to get the middle frame timestamp, and extract that ?

    If I’m recursing through a large collection of videos, is there a way to keep ffmpeg "open" without the overhead of opening/closing it to identify each file ?

  • Adding subtitles with fluent-ffmpeg

    26 août 2020, par eZo

    I'm trying to burn in subtitles into a video. This command works perfectly from command line :
ffmpeg -i in.mp4 -vf subtitles=sub.srt:force_style='Fontsize=20' out.mp4

    



    My code on server side doesn't seem to do much (it creates test.mp4 though)

    



    ffmpeg('temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.mp4')
            .outputOptions(
                '-vf subtitles=temp/subtitleVideos/qTWVbM5pkKms_pJbE8OAvH3N.srt'
            )
            .on('error', function(err) {
                console.log('Error: ' + err.message);
            })
            .save(path + 'test.mp4');


    



    and I get the following error : Error: ffmpeg exited with code 1: Error opening filters!