Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (61)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5953)

  • ffmpeg seems to be capping my output

    11 septembre 2012, par Kurt Spindler

    I'm trying to extract individual frames from a video.

    ffmpeg -i face_source.wmv face_sourceframes/image%03d.jpg

    is almost working just fine. The first six or so appear perfect (have roughly 30kB file size), but then they continuously degrade (e.g. 23kB, 17kB, etc.) until all frames are 11kB. Of course, these frames are pixelated and not desired.

    I tried forcing a bitrate with the -b option. ffmpeg tells me this about the inupt video :

     Duration: 00:00:10.07, start: 0.000000, bitrate: 781 kb/s

    So I set bitrate, first using -b 781k, and then, just to be safe, also tried doubling it, to -b 1562k. Neither of these options made any apparent difference in the output.

    Any help would be appreciated ! Thank you !

  • Pipe ffmpeg stream to sox rec [closed]

    8 novembre 2023, par Red-Tune-84

    I am reading an audio stream via ffpmeg like this :

    



    ffmpeg -i http://icecast.radiovox.org:8000/live.ogg -f mp3 filename

    



    and want to pipe it to a sox command :

    



    rec filename rate 32k silence 1 0.1 3% 1 3.0 3%.

    



    Ultimately, what I am trying to achieve, is to record the audio from a live Icecast stream of a talk show. I only want recordings though of the individual's speaking. Everytime there is silence, I want to stop the recording and start a new one once they start speaking again.

    


  • How to extract jpegs from a video file using ffmpeg [migrated]

    28 octobre 2013, par Andrew Simpson

    I am using C# and ffmpeg.

    In this scenario I have 279 individual jpegs and i have used ffmpeg to create a AVI file from these images on my client.

    CMD Line :

    -f image2 -r 10 -i "C:\000EC902F17F\img%05d.jpg"  -s 352x288  -y "C:\1\test.avi"

    I then upload to my server.

    CMD Line :

    -i c:\1\1.avi c:\1\img-%05d.jpg

    I then extract jpegs from the AVI file. I get 265 jpegs back.

    Obviously ffmpeg is dropping these frames (most probable) when the avi is 1st created. Is there a way to 'force' to encode using ALL the images I have ?

    Thanks.

    PS
    I did not specify any command line option other than the size of the video output. As far as I am aware if none are specified then ffmpeg automatically chooses the best ones ?