Recherche avancée

Médias (91)

Autres articles (75)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (7683)

  • yt-dlp : ffmpeg working for some videos, but not for the others

    30 janvier 2023, par Mikki99

    I started using yt-dlp a few days ago, so I'm new to the whole thing. I needed to download some videos from youtube, but have them split into chapters.

    


    The command :

    


    yt-dlp --split-chapters URL


    


    seems to be doing the right thing. However, running exactly the same command works for some videos, but for some I get the following error :

    


    ERROR: Postprocessing: ffmpeg not found. Please install or provide the path using --ffmpeg-location 'list' is not recognized as an internal or external command, operable program or batch file.


    


    I have previously installed ffmpeg and added it to the PATH and it worked fine, and it doesn't make much sense to me that the command would work for certain URLs if ffmpeg wasn't there.

    


    The video for which the error comes up is no different than the one for which the command works. They both have chapters.

    


    Also, I don't really understand this last part of the error message

    


    'list' is not recognized as an internal or external command, operable program or batch file


    


    Does anyone have an idea what might be happening ?

    


    Please do let me know if there is something else I should share — I'll edit the original post !

    


    Thanks a lot !

    


    I've tried running the command on different short (couple mins long) videos that included chapters (just so the download doesn't take a lot of time). It worked for numerous arbitrary videos I found on youtube. The video that I am actually interested in is 40 min long (suppose that doesn't make any difference), but for this video (or others from this playlist) I run into the mentioned error. Here is the link to the video, if you want to try it out yourself.

    


  • Splitting videos using ffmpeg - ffsplit.sh by grapsus.net

    15 avril 2018, par hongducwb

    http://grapsus.net/blog/post/A-script-for-splitting-videos-using-ffmpeg
    Everything work fine, but i dont know how to make it auto splitting each files in folder with different filename ...i have bunch of files but i dont want create each folder for each files then rename it to input name (eg : video.mpg, 1.mp4,..)

    ffsplit.sh video.mpeg 1200

    and is there have anyway to excute it without ffsplit.sh in same folder ? because it’s in ubuntu (installed on windows10) (it’s like Environment Variables in windows)

    THANK :)

  • Videos converted using FFMPEG do not have video duration information

    6 mars 2016, par Harshad M

    I am using FFMPEG to convert uploaded videos to .flv, after conversion the flv video doesn’t have information about it’s duration. So the user cannot rewind/forward, replay or see a specific part of it. The code is as follows :

    "ffmpeg -i $srcfile_path -s 320x240 -ar 44100 -b 2048k -r 12 $desfilepath" ;
    

    Please help. Thanks in advance.