Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (73)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (13306)

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

  • ffmpeg output to framebuffer (fbdev) Raspberry Pi 4

    30 mars 2022, par Alex Beavren

    I have been trying to play a video on the frame buffer with ffmpeg. In theory this

    &#xA;

    ffmpeg -i /dev/video0 -pix_fmt bgra -f fbdev /dev/fb0&#xA;

    &#xA;

    I get errors like

    &#xA;

    [fbdev @ 0xfcb380] Pixel format bgra is not supported, use rgb565le&#xA;av_interleaved_write_frame(): Invalid argument&#xA;

    &#xA;

    or&#xA;Interlace errors when I use rgb565le.

    &#xA;

    Confusingly when I try to read from the framebuffer, I get a screenshot of incorrect resolution which looks like a blank tty.

    &#xA;

    sudo ffmpeg -f fbdev -framerate 1 -i /dev/fb0 -frames:v 1 screenAA3.jpeg&#xA;

    &#xA;

    I am running on a RPi4 with latest buster build. I have had issues with graphical packages not working with the post vulkan driver, could that be the issue ?

    &#xA;