Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (47)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (8780)

  • Videos to jpg image ffmpeg error

    14 mai 2017, par Loic Bch

    i’m making a program in c# in wich i’m using ffmpeg to cut video into frames.
    i’m doing it this way in my program :

    ffmpegPath = "C:\\Program Files (x86)\\ffmpeg\\ffmpeg32.bat";
    string videoPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "video.avi");

    Process process = new Process();
               process.StartInfo.FileName = ffmpegPath;
               process.StartInfo.Arguments = @"-i " + videoPath + " -qscale:v 2 image%03d.jpg";
               //process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
               process.Start();   // On cut la vid avec ffmpeg

    This code works perfectly fine in debugging mod and display all my images
    Now i want to make a setup to install the program, so i’m using InnoSetup to make a setup but when i install the program and try to run the same code it display the commande prompt with ffmpeg error :
    "cannot display image2.jpg : av_interleaved_write_frame() : I/O error occurred
    ffmpeg error

    if someone can help me on why i’m getting this error in release and not in debug mode ? Why ffmpeg cant execute the request correctly after the setup since i’m changing nothing ?

    I already tried to double the % on ffmpeg request but it didnt works, all the path are correct and the input file is not damaged or anything.
    The ffmpeg request works fine when i execute it directly from the prompt.

  • Livestream programatically generated audio/video over RTMP [on hold]

    13 février 2018, par user2649681

    I’m looking for a way to stream data generated by a program over RTMP without saving it to an intermediate file to then stream with ffmpeg. For example, if I have a program to run that constantly generates white noise as samples of audio(e.g. a function that outputs a random sample run within an infinite loop), and, if possible, a screen of a solid, random color, is there a way for me to this audio over RTMP more or less as it’s being generated ? I would imagine, if this is possible, it may involve something along the lines of building up buffers of a fixed number of audio samples and then streaming it somehow over RTMP.

  • How to hide console output of FFmpeg in Python ?

    18 février, par Shiven Saini

    I was working on a YouTube video downloader Python program.

    


    I want to encode downloaded data to other media formats for this job i used FFmpeg and FFmpeg-Python (Package to use FFmpeg in Python).

    


    Everything is Fine but i want to ask that how can i disable FFmpeg Output on the console ?

    


    Here is some Pic of my Program :-

    


    Main Graphical Interface

    


    But this console often appears when my program starts encoding, suppressing the main GUI :-

    


    FFMPEG - OUTPUT

    


    If you know any solution for my problem then please give me some solution.
It is my first time that i am trying Stackoverflow for my problem.

    


    THANKS IN ADVANCE !!!!!