Recherche avancée

Médias (91)

Autres articles (50)

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (5683)

  • best way to take a "screenshot" of a movie and resize it to rectangular ?

    30 novembre 2013, par Rubytastic

    What would be the best way to take a screenshot with ffmeg ( say the first frame of movie ) and then
    make a 200x200 image from it ?

    Im not sure what method to look for in docs or api to accomplish these tasks.

  • ffmpeg : Conat 3 Movies (2 Movies without audio & 1 Movie with audio)

    25 juillet 2013, par Michael Gohl

    i want to concat 3 movies with ffmpeg.

    One movie has an audio track. When i concat the movies with the following command, I lose the audio track.

    ffmpeg  -i concat:"intro.mpeg|movie_with_autdio.mpeg|outro.mpeg" \
    -qscale 0 -vcodec copy -acodec copy result.mpeg

    Can someone help me ?

    Best Regards
    Micha

  • ffmpeg make image and movie in one command

    22 juin 2012, par knishua

    this is the situation :
    given a thumbnail, i need to overlay it on top of an image.

    so, i need to scale image pass it as parameter to overlay pass that to drawtext.

    I have got so far, adding multiple text + overlay + thumbnail,

    1. ffmpeg -threads 8 -i D:/imagesequence/background.jpg -vf "movie='D\:/imagesequence/dpx/thumbnail.jpg' [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/3[water];[water] drawtext=fontsize=32:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='shotName':x=(w)/2:y=(h)-50,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Notes \:':x=(w)/5:y=(h)-90,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Frame Range \:':x=(w)/5:y=(h)-130,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Lens \:':x=(w)/5:y=(h)-170,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Undistortion \:':x=(w)/5:y=(h)-210,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Image Sequence \:':x=(w)/5:y=(h)-250,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Date \:':x=(w)/5:y=(h)-290,drawtext=fontsize=28:fontcolor=White:fontfile=/Windows/Fonts/arial.ttf:text='Element Name \:':x=(w)/5:y=(h)-330,drawtext=fontfile=/Windows/Fonts/arial.ttf:text='FUTUREWORKS':x=130:y=200:fontsize=54:fontcolor=White[out]" D:\imagesequence\dpx\brn_055.0000.dpx

    2. ffmpeg -threads 8 -i D:\imagesequence\dpx\brn_055.%04d.dpx -vf "drawtext=fontfile=/Windows/Fonts/arial.ttf:text='shotcam':x=(w)/2:y=(h)-35:fontsize=24:fontcolor=Yellow,drawtext=fontfile=/Windows/Fonts/arial.ttf:text='Frame \:':x=(w)-600:y=(h)-35:fontsize=24:fontcolor=Yellow,drawtext=fontfile=/Windows/Fonts/arial.ttf:text='Focal Length \:':x=(w)-600:y=(h)-65:fontsize=24:fontcolor=Yellow" D:\imagesequence\dpx\test2.mov

    3. how do i scale an image and pass it to movie, in 1

    4. how do i make a blackscreen size that of an image say
      'D :\imagesequence\dpx\brn_055.0001.dpx' and pass it to input in 1

    5. is it possible do bother 1 and 2 in one command line ( ffmpeg ....)
      i.e. make an image from first point ( 1 ) and continue with making .mov ( of 1 image + input from point 2 )

    or in other words if it is not possible to do (1 + 2) in one command then is it possible to first execute 1 then execute 2 ( but with output from 1)
    do it