Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (87)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5192)

  • ffmpeg save hls to m3u8 with mp4 segments

    9 juin 2018, par J. Omen

    I am looking for a command ffmpeg, which saving live input (rtmp or hls) to hls m3u8 with mp4 segments files. I know that it is possible to do, i.e. there is infohttps://bitmovin.com/hls-news-wwdc-2016/ but every command I tries - makes ts files. Anyone know solution ?

  • ffmpeg save remote file to user's computer

    18 mai 2018, par hmaxx

    I can cut and save a video from a remote server to my server using the below command :

    ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4

    I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.

  • extract audio using ffmpeg and save wav files

    7 mai 2018, par jameshwart lopez

    ffmpeg has a way to extract video images using the following command

    ffmpeg -i "video.avi" -vf fps=30 "images/frame_%09d.png" -hide_banner

    Is there a way in ffmpeg to extract or cut audios into smaller chunks the same way that is done on the above command but the difference is it will create an audio file not an image file.

    I tried the following but it only creates a wav file.

    ffmpeg -i "video.avi" -vf fps=30 "images/frame_%09d.wav" -hide_banner