Advanced search

Medias (91)

Other articles (75)

  • Gestion générale des documents

    13 May 2011, by

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

  • MediaSPIP v0.2

    21 June 2013, by

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

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

On other websites (7059)

  • How to resize video but do not stretch/modify original video using ffmpeg [migrated]

    8 March 2023, by Kujo Ludin

    enter image description hereIm pretty bad at video editing/property terms. Sorry in advance.

    


    Green = Input video
Red = Output video

    


    Sorry if this doesnt make sense. But can this be possibly achieved?

    


    I tried searching for solutions in google, alas i need help in SO

    


  • Concatenating videos using concat demuxer in FFMPEG is finished but video is lost in second video?

    3 October 2019, by Gopinathan B

    Used concat demuxer in FFMPEG code to concat videos :-

    cmd = arrayOf("-y", "-f", "concat", "-safe", "0", "-i", textFile!!.path, "-c:v", "libx264", "-crf", "23", "-preset", "ultrafast", "-c:a", "copy", outputFile.path)

    After concatenate finished, the video one played correctly has both audio & video but video two - video is missing has only audio. Output file has size & time duration including two videos.

    The textFile contains :-

    file '/path/to/file1'
    file '/path/to/file2'

    Used absolutePath for two mp4 video files.

    Tryed this FFMPEG concat video finished but the video missing. But no solution to my problem.

    Anything I am missing in the command.

  • The most efficient way to generate mp4 video containing looped boomerang-alike video file?

    29 July 2019, by B. Palka

    I’ve developed an Android app that allows user to create boomerang-alike mp4 video. This video consists of 10 still images being played back and forth quite fast. I know that such video (boomerang effect) can be easily looped from single video file while playing it, but I really need to create a mp4 video that would essentially contain already prepared boomerang video. The output video can be downloaded and played by user on any external player (over which obviously I don’t have any control).

    For that purpose currently I create a video from images in a loop. The loop starts from 1st picture and goes to 10th picture with 0.25 sec delay between frames, then goes back from 10th to 1st including delay. And there is 5 of those loops, which essentialy means creating a single video from 5 * 10 * 2 = 100 images. I know it’s kinda ridiculous, so the time that it takes to prepare this video is riduculous as well (around 1:40 min).

    What solution could you recommend assuming that the output video really has to consist of 5 loops back-and-forth? I’ve thought about creating single loop video (20 pictures) and then create final output video by concatenating it 5 times. But could it be any good? I’m trying to find an efficient yet understandable for a beginner Android programmer way.