Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (36)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4135)

  • ffmpeg overlay time offset

    24 juillet 2012, par Produitbrut

    I'm trying to add overlays to an input video with ffmpeg that appear after a time period after the video starts.

    The basic way to add an overlay is :

    ffmpeg -i myvideo.avi -vf "movie=my_overlay.avi [ovl]; [in][ovl] overlay=0:0 [out]" output.avi

    But this simply adds the overlay video (or image) from the start of the input video until the input video ends or the overlay video ends.

    I know how to offset the overlay video using movie=my_overlay.avi:seek_point=1.4, but what about an offset on the input video ?

    I could always clip the video to the desired point, add overlay on the second clip, then stitch the two but that's not very efficient.

  • Using ffmpeg with MAMP local server

    22 mai 2012, par dirk_22

    In my MAMP local server home folder on Mac OS X (htdocs), I have a bunch of images (labeled image0 through image(n)) which I would like to stitch together into a jpeg using ffmpeg. When I type the following command into terminal, a .mpg file is successfully generated.

    ffmpeg -f image2 -i image%d.jpg videofile.mpg

    However, when I try to execute the same command using the php code pasted below, nothing seems to happen.

    <?php
    shell_exec('ffmpeg -f image2 -i image%d.jpg videofile.mpg');
    ?>

    I've copied the installed ffmpeg folder on my home directory into htdocs, but ffmpeg doesn't seem to be accessed. I'm very new to PHP, so please feel free to point out any gross errors in my code. I'd just like the php script to accomplish the same task which terminal executes upon input of the aforementioned command. I'd welcome any and all advice. Cheers.

  • ImportError : No module named 'pydub'

    28 janvier, par ensminger

    I am creating a simple script that will use pydub to fetch files from a directory based on their name, then stitch a few of them together and export the result.

    



    I had the script working great in a Windows environment (Win 7, python 3.4), but now I'm trying to run on OSX.

    



    I have installed all necessary components - ffmpeg, libav. I have just installed pydub with pip, pulling directly from github.

    



    My file starts with the input statement from pydub import AudioSegment, and this is what I get :

    



    Traceback (most recent call last):&#xA;  File "functions.py", line 2, in <module>&#xA;    from pydub import AudioSegment&#xA;ImportError: No module named &#x27;pydub&#x27;&#xA;</module>

    &#xA;&#xA;

    Thoughts ? What am I missing ? Any help is greatly appreciated !

    &#xA;