Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (60)

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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6624)

  • Want to print a console message on every .ts file entry in m3u8 file by ffmpeg

    18 décembre 2015, par Anurag Yadav

    I am using ffmpeg to record ip camera rtsp stream. I want to get .ts file entry at the instant when the entry is done in m3u8 file so that i can get and store it somewhere else. That’s why i want to print a console message when ffmpeg do entry on m3u8 file. I am using below command. Also Iam running command using java.

    ffmpeg -rtsp_transport tcp -i <ip camera="camera" rtsp="rtsp" url="url"> -c:v copy -map 0 -f segment -segment_time 5 -segment_list_type m3u8 -segment_list /home/ira/Desktop/test/out.m3u8 -segment_format ts -y /home/ira/Desktop/test/out%01d.ts
    </ip>
  • How to keep the orientation number after converting from a video file to a image file by a ffmpeg command

    15 mars 2018, par user27240

    The command below is working perfectly fine for my environment except it deletes the orientation number of the image file after being converted from a video file.

    I’d like to know how to keep the orientation number of the image with the command line below(it also have to keep the original purpose of its functionality which is conversion of a video to a image to another directory). I’d appreciate your support.

    for i in /path/to/inputs/*.mp4; do ffmpeg -i "$i" -frames:v 1 "/path/to/outputs/$(basename "$i" .mp4).jpg"; done

    ffmpeg version 2.2.2
    OS:centos-6 (x86_64)

  • ffmpeg issue with file paths and wav file [closed]

    8 septembre 2023, par 101is5

    I'm trying to run :

    &#xA;

    ffmpeg -i audio_input_files/voz.wav voz.mp3&#xA;

    &#xA;

    I'm using Windows 11 and I've tested it in PowerShell and CMD.

    &#xA;

    The issue here involves path syntax and file format.
    &#xA;As shown in an example from ffmpeg docs (ffmpeg -i /tmp/test%d.Y /tmp/out.mpg) and many other sources, I should put a leading slash in relative paths. Here, however, that causes No such file or directory, for both slash and backslash. Unlike everywhere I've looked, removing the leading slash was the solution.

    &#xA;

    Now, if the input is provided as a path and it is a .wav file, I get Invalid data found when processing input.

    &#xA;

    Providing just names (and being in the correct folder, obviously), e.g. ffmpeg -i voz.wav voz.mp3 works just fine, though.

    &#xA;

    Is there a workaround for that, i.e. in case I want to use paths for wav files with ffmpeg ?

    &#xA;