Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (78)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (7970)

  • ffmpeg video concate not working when one video is generated from a single image

    16 décembre 2017, par Sid

    what I am doing is generating a video of 5 secs from a single image using FFmpeg.

    for that I’m using the following command :

    -loop 1 -i image.jpg -c:v libx264 -t 5 -pix_fmt yuv420p -crf 25 -s 1280x720 Out.mp4.

    Now I want to concatenate this video with another one.

    I am able to do this for other videos with the following command

    -y -i input1.mp4 -i input2.mp4 -strict experimental -filter_complex [0:v]scale=1280x720,setsar=1:1[v0][1:v]scale=1280x720,setsar=1:1[v1] ;[v0][0:a][v1][1:a]
    concat=n=2:v=1:a=1 -ab 48000 -ac 2 -ar 22050 -s 1280x720 -r 30 vcodec
    mpeg4 -b 2097k output.mp4

    But when I join the video generated from the image, the videos do not join as the second input does not have an audio because it is generated from the image.So is there any way to join these two videos using -filter_complex in FFmpeg ?

  • Create animation video or applying different different effect on video from set of images

    8 janvier 2016, par Mehul Dudhat

    I tried with ffmpeg but it’s not showing any effect with created video. I tried below command with FFMPEG lib.

    ffmpeg -f image2 -r 1/5 -i /&lt;<dir path="path">>/img/img%d.jpg -vcodec libx264 /&lt;<dir path="path">>/output_video.mp4
    </dir></dir>

    The image generated video : https://flic.kr/p/CWtxhi

    Is there any other library available to add effect or animation on video during the creation from set of images ?

    I would like to give this type of animation or effect https://animoto.com/play/rXBG1fIq9FWN00O7R7wKyQ

  • How I can overlay video onto another video start from 2 second to 4 second ?

    23 janvier 2023, par KoliK

    I need overlay video onto another video start from 2 second to 4 second.

    &#xA;

    I use ffmpeg for overlaying video onto another video for this command&#xA;ffmpeg -i tmp/test_screen_1672755242397.mp4 -vf "movie=tmp/test_camera_1672755249551.mp4, scale=250: -1 [inner]; [in][inner] overlay =10: 10 [out]" completed.mp4&#xA;But video test_camera_1672755249551 must be to star from 2 second and end to 4 second. What I need to add in command for result ?

    &#xA;