Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (100)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (9054)

  • Extracting Intra-frames from a video file using ffmpeg

    8 juin 2016, par Kunal Bansal

    I have installed FFmpeg from here : https://ffmpeg.org/

    I am extracting only I-frames from a video source file. The command I am using for that is :

    ffmpeg -i video.mov -vf "select='eq(pict_type,PICT_TYPE_I)'" -vsync vfr frame%d.jpg

    While using .mov extension, I am getting nearly 25 frames, whereas when I convert source file into .mp4 or .avi, it gives only 2 frames as output. Why so ?

    Is there any minimum value for number of I-frames in a source file. Please help.

  • Android MediaMetadataRetriever.METADATA_KEY_DATE gives only date of video on galaxy S7

    3 octobre 2016, par Zaid Bin Tariq

    I am writing a code to get video creation date and time from metadata, i am using following code to get creation date

    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
    retriever.setDataSource(path_to_video);
    String date = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE);

    it works perfect on all devices except Samsung Galaxy S7, it returns only date in "YYYY MM DD" format, no time stamp i need both date and timestamp.

    any help in this regard is much appreciated.

  • Read h.264 video frames with opencv in python Enthough (mac Yosemite)

    3 février 2015, par Bertrand

    I’m using the Enthought distribution (Canopy) to do some data analysis and computer vision in the IPython notebook. I want to read the frames of several .avi files that use the h.264 codec and make some annotations on those images.

    if you’re using the Canopy distribution, you know that you can install opencv through the package manager (just launch the Canopy application, click on package manager, search for opencv and install the package). The issue though is that the following code

    import cv2
    f = "/Volumes/DATA/temp.avi"
    cap = cv2.VideoCapture(f)

    flag,frame = cap.read()

    print flag,frame

    always returns (None,None) because opencv can’t read the video. So it seems like ffmpeg is not enabled by default in the Enthought package manager.

    I’ve been losing a lot of time on this problem, so I’ll post the solution below. Hopefully it will help some other folks out there !