Recherche avancée

Médias (91)

Autres articles (22)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (4293)

  • Split videos with ffmpeg in batch mode ?

    11 avril 2014, par user3524742

    I use this code to split video after 5s in batch mode but when I click .bat file, cmd disappears immediately.

    for %%i in ("*.mp4") do ffmpeg -i "%%i" -t 00:00:05 -codec copy "%~ni.mp4"
    pause

    How to fix it ? Thanks !

  • Split and marge clip using ffmpeg

    24 mai 2017, par user2749679

    I am using ffmpeg to split and marge a vidoe clip by doing following :

    F:\Temp_Project\ffmpeg\ffmpeg -ss 00:00:00 -t 00:00:20 -i F:\Temp_Project\ffmpeg\input.avi -ss 00:00:20 -t 00:00:48 -i F:\Temp_Project\ffmpeg\input.avi -filter_complex "[0][1]concat=n=2:v=1" -y F:\Temp_Project\ffmpeg\output.avi

    Now i want to do this without using filter complex as this filter take much time to produce a result.

    I found one way to perform the above task using two step operation :
    Split and save parts to hard disk
    concat saved parts.

    Sample code :

    F:\Temp_Project\ffmpeg\ffmpeg -i "F:\Temp_Project\ffmpeg\input.avi" -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:20 -y F:\Temp_Project\ffmpeg\1.avi -vcodec copy -acodec copy -ss 00:00:20 -t 00:00:48 -y F:\Temp_Project\ffmpeg\2.avi

    F:\Temp_Project\ffmpeg\ffmpeg -i "concat:F:\Temp_Project\ffmpeg\1.avi|F:\Temp_Project\ffmpeg\2.avi" -c copy -y F:\Temp_Project\ffmpeg\output.avi

    How can i marge above two commands in a single lines that is split and marge video clip without saving intermediate files and without using filter_complex.

  • Is there any Android lib that can be used to split mp4 files in the GOP dimension ?

    11 décembre 2024, par Chaojie Mo

    An mp4 file consists of meta information and a set of GOPs. Now i want to split mp4 files in the GOP dimension and then every GOP with meta information is recombined into a new file. Is there any feasible solution ?