Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

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

  • Extracting N frames per second using ffmpeg

    13 juillet 2022, par Sangeeth Kumar

    ffmpeg -i input.mp4 -vf trim=10.021295:22.621295 -r 1 frames/frame_%d.png

    


    This returns 24 frames instead of 12

    


  • qt-faststart : Fix the signedness of variables keeping the ftello return values

    29 octobre 2012, par Michael Niedermayer
    qt-faststart : Fix the signedness of variables keeping the ftello return values
    

    These variables are assigned the return values of ftello, which
    returns an off_t, which is a signed type. On errors, ftello returns
    - 1, thus make sure this error return value can be stored properly.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/qt-faststart.c
  • PySceneDetect FFmpeg Not Available

    14 août 2023, par Dmitriy Pushkarev

    I already installed FFmpeg and this is available in terminal I can convert video and etc, but it's completely not available in PySceneDetect.

    &#xA;

    pip installed FFmpeg-python and FFmpeg library and FFmpeg itself in system.

    &#xA;

    PySceneDetect returns :

    &#xA;

    ffmpeg could not be found on the system. Please install ffmpeg to enable video output support.&#xA;

    &#xA;

    I think trouble with path, but can't put path in PySceneDetect. I can use path to binary FFmpeg, only in ffmpeg-python library, like this and it's working

    &#xA;

    This code working fine :

    &#xA;

    Here i using only FFmpeg-python library

    &#xA;

    stream = ffmpeg.input(&#x27;vi0.mp4&#x27;)&#xA;stream = ffmpeg.filter(stream, &#x27;fps&#x27;, fps=10, round=&#x27;up&#x27;)&#xA;stream = ffmpeg.output(stream, &#x27;vi1.mp4&#x27;)&#xA;ffmpeg.run(stream,cmd=&#x27;./ffmpeg&#x27;)&#xA;

    &#xA;

    But can't it to get work with PySceneDetect

    &#xA;

    print(scenedetect.video_splitter.is_ffmpeg_available())&#xA;

    &#xA;

    return False

    &#xA;

    split_video_ffmpeg(video_path, scene_list, show_progress=False)&#xA;

    &#xA;

    returns "ffmpeg could not be found on the system. Please install ffmpeg to enable video output support."

    &#xA;