Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (81)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

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

Sur d’autres sites (6103)

  • How to input only part of the video file in ffmpeg

    22 juin 2019, par Asanka sanjaya

    I’m using ffmpeg in order to process videos.

    ffmpeg -i C:\test.mp4 [rest of the command]

    When I use above command it process whole video. How can I select a paticular part of the video and process ?

  • doc/indevs : Add example using cropping to capture part of a plane

    23 mars 2019, par Mark Thompson
    doc/indevs : Add example using cropping to capture part of a plane
    
    • [DH] doc/indevs.texi
  • FFMPEG merge two files cause the video to freeze at the end of the first part

    17 janvier 2015, par Anas

    I am using FFMPEG to cut and merge video file, these are my commands :
    //split the video to three parts

    ffmpeg -i "input.mkv" -ss 00:00:00 -to 00:04:00 -c copy -map 0 -y out0.mkv
    ffmpeg -i "input.mkv" -ss 00:05:00 -to 00:22:00 -c copy -map 0 -y out1.mkv
    ffmpeg -i "input.mkv" -ss 00:23:00  -c copy -map 0 -y out2.mkv

    //merge these parts in one video again

    ffmpeg  -f concat -i mylist.txt -c copy  -y output.mkv

    //mylist.txt contains :

    file out0.mkv
    file out1.mkv
    file out2.mkv

    And everything works fine, except that the new merged video freeze for 5 seconds at the end of the first merged part, in the above example at sec 04:00 the screen pauses for 5 seconds and then the video continue.

    Do you know why this is happening ? is there a work around please help.