Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (86)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5848)

  • H.264 is patented. What happens when developing a commercial app in Android using H264 codec in ffmpeg ? [closed]

    26 mai 2013, par user1914692

    H.264 is patented.

    In countries where patents on software algorithms are upheld, vendors
    and commercial users of products that use H.264/AVC are expected to
    pay patent licensing royalties for the patented technology[14] that
    their products use.

    What happens when developing a commercial app in Android using H264 codec in ffmpeg ?

    Here there are two situations :
    (1) decode online video stream, and display it.

    (2) encode contents to a video file using H.264.

    [Update :]
    From what I googled, here are some simple pieces of information :
    (1) decode : free
    (2) encode : H.264 encoded internet video that is free to end users will never be charged royalties.
    On August 26, 2010 MPEG LA announced that H.264 encoded internet video that is free to end users will never be charged royalties. See Wiki H.264
    (3) encode : for other situations except the one in (2), I guess it might be for commercial use.

    For more, see Ref : "Know your rights : H.264, patent licensing, and you" 2010/05/04

  • ffmpeg, HLS options, ffmpeg components for dummies ? [closed]

    10 juin 2013, par Vetal

    I am trying to make some HLS encoding with ffmpeg

    After playing a lot (in Ubuntu 12.04) with ffmpeg I realized I do not understand basic questions.

    How to make a ffmpeg "by the book" ?

    I've started a "sudo apt-get install ffmpeg"

    I finished with a manual install :

    http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20quickly%20compile%20FFmpeg%20with%20libx264%20%28x264,%20H.264%29

    Latter needed a following command to get rid of build error, where I spent quite some time with :

    sudo apt-get remove ffmpeg x264 libx264-dev

    So, now I've got to the documentation for HLS : http://ffmpeg.org/ffmpeg-all.html#hls-2

    Trying to run some stuff :

    ffmpeg -i 3.mp4 hls.m3u8

    Error : Unable to find a suitable output format for 'hls.m3u8'

    ffmpeg -i 3.mp4 -hls_time 10 hls.m3u8

    Error :
    Unrecognized option 'hls_time'
    Failed to set value '10' for option 'hls_time'

    Anyway, looks like an options specified in different formats, e.g. 'vbsf' vs 'v:bsf', -vcodec and -v:c, etc. etc. Like there are few alternative versions

    After starting with it some time ago, I feel more pessimistic now like I missed some fundametals. Any Ideas for the things above ?

    Thank you

  • video created by moviepy doesn't play on web

    18 février 2016, par R. Glenn

    I’m playing around with moviepy, with the intent of creating videos to imbed in webpages. However, I’m having trouble getting the videos that I create to actually play in chrome and firefox (it does play in safari :/ ).
    Firefox claims the "file is corrupt".

    I find it extremely likely I haven’t installed something properly. I followed (among other things, since I’m not yet authorized to post enough links so as to fully describe my situation, #thanksStackOverflow ;P) http://wiki.webmproject.org/ffmpeg/building-with-libvpx, but according to [link I would have shared if allowed :P] that stuff is all "automatically installed during MoviePy’s installation", so I’m not sure how I could have messed it up.

    see example code (I’ve tried it with ’python’, ’python3’ and ’python3.5’) :

    from moviepy.editor import *

    filepath = "../read_videos/MOVI0011.avi"
    file = VideoFileClip(filepath)

    clips = []
    clips.append(file.subclip(10, 12))
    clips.append(file.subclip(20, 22))
    clips.append(file.subclip(30, 32))
    clips.append(file.subclip(40, 42))

    concatenated_clip = concatenate_videoclips(clips)

    concatenated_clip.write_videofile("../write_videos/clip.mp4", fps=24, codec='mpeg4')

    firefox error

    OSX El Capitan (10.11.3)