Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (95)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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 ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10270)

  • bash script | ffmpeg encoding videos + hardsub

    17 avril 2017, par Rifat N Maswadeh

    Hello stackoverflow ,

    i’m using this bash script to encode videos (*.mp4) in same folder

    Script :

       #!/bin/bash  

    for i in *.mp4;
     do name=`echo "${i%.*}"`;
     echo $name;
     ffmpeg -i "${i}" -vcodec libx264 -b:v 1800k  -maxrate 2200k -acodec aac -movflags +faststart -tune zerolatency "${name}".enc.mp4;
    done

    my question how i can add capability to hard subtitle ? automatically .

    Example :

    i have 20 video (video1.mp4 .. video2.mp4 ...) and 20 subtitle (video1.ass .. video2.ass video3.ass ..) in same folder .

    how i can do it with bash script ?

    • hard sub in ffmpeg ** -vf "ass=video1.ass" **

    Thanks all ,

  • How to start/stop FFMPEG stream ?

    26 avril 2016, par Spartan

    I am using ip cam which provides streams mov/mp4. I am successfully saving the stream using this command :
    ffmpeg -i rtsp://@192.168.241.1:62156/abc.mp4 -acodec copy -vcodec copy c:/abcd.mp4

    Now I want to stop it programmatically for that I used following commands :
    Ctrl+C and q both are working fine(logs are showing in right manner) but in the end I am getting corrupt video file.

    Can any one guide me how can stop recording with clean execution.

  • Retrieving and Saving media metadata using FFmpeg

    22 mars 2024, par Rahul Patwa

    I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.

    



    Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.

    



    Or, is there any other tool/utility/API that I can use for this ?