Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11956)

  • OpenCV : FFMPEG : tag 0xffffffff/'����' is not found (format 'mp4 / MP4 (MPEG-4 Part 14)')'

    2 mars 2017, par Gingerbread

    I am trying to save a background subtracted video in python and the following is my code.

    import cv2
    import numpy as np

    capture = cv2.VideoCapture('MAH00119.mp4')
    size = (int(capture.get(cv2.CAP_PROP_FRAME_WIDTH)),
    int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT)))
    fourcc = cv2.VideoWriter_fourcc(*'X264')
    out = cv2.VideoWriter('output.mp4', -1 , 20.0 , size)
    fgbg= cv2.createBackgroundSubtractorMOG2()

    while True:
       ret, img = capture.read()
       if ret==True:
           fgmask = fgbg.apply(img)
           out.write(fgmask)
           cv2.imshow('img',fgmask)

       if(cv2.waitKey(27)!=-1):
           break

    capture.release()
    out.release()
    cv2.destroyAllWindows()

    However, this keeps throwing the following error : "OpenCV : FFMPEG : tag 0xffffffff/’����’ is not found (format ’mp4 / MP4 (MPEG-4 Part 14)’)’"

    I have FFMPEG installed and have added it to the environment variables. My background subtraction code without having to save to a file works fine, so I know there’s nothing wrong with openCV installation. I am stuck at this place. I know that my python doesn’t seem to recognize FFMPEG but I don’t know what else to do apart from adding FFMPEG to the environment variables.
    I am using OpenCV version 3.2 on Windows 10 and Python 2.7.

    Any help will be much appreciated !

  • avformat/hlsenc : move the warning message from every segment upload to init part

    6 septembre 2019, par Steven Liu
    avformat/hlsenc : move the warning message from every segment upload to init part
    

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • 1 movie to 14 part video / 1 Subtitle [closed]

    10 avril 2020, par Tayfun Erbilen

    I just cut my one long movie to 14 piece with ffmpeg.

    &#xA;&#xA;

    And now, I don't know how to show subtitle.

    &#xA;&#xA;

    Subtitle was for full version, but now I have 14 pieces and I don't know how to fit subtitle to these parts. By the way, I want to show on web. I'm using jwplayer for videos, but still I didn't figure out subtitle issue.

    &#xA;&#xA;

    Is anyone suggestion ?

    &#xA;