Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (47)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (5689)

  • create movie from one image updates in linux

    27 novembre 2019, par milad

    I’m a C programmer on linux.

    I write a program that saves an image in /srv/ftp/preview.png which is updating frequently and i want to create a movie from this updates.

    It’s timestamp is important for me, e.g if image updates after 3.654 seconds i want movie show this update(frame) after 3.654 seconds too.

    I searched in Internet for several hours but i can’t find any solution.

    I know about ffmpeg but it will convert images(and not one image) to movie without millisecond timestamp.

    I found this Question but it seems is not useful in this case.

    Is there any tool to do that ? if not, please introduce an API in c to write a program myself

  • Can't Stream Ogg From ffmpeg Through stdout

    16 janvier 2012, par dave mankoff

    To get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents :

    ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg

    ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.ogg

    test.a.ogg will play properly and has no problems. test.b.ogg starts in the middle of the source audio and has stops and gaps in the audio. It also does not report the length of the track.

    I want to transcode source files on the fly into ogg for a program I am writing and I am trying to pipe the stdout from ffmpeg into my program. Putting the results into an intermediary file will kill performance since the transcoding is supposed to happen on demand.

  • Remove terminal opened by ffmpeg-python

    28 février 2021, par Omid Ki

    I have this program that combines audio and video together and for that I use ffmpeg and ffmpeg-python. The program works really well but when I try to make an exe version, naturally, it pops up a terminal and shows the ffmpeg functioning. I saved the file as .pyw instead of .py so that no window will pop up but it still happens. I also saw another post on how to make the terminal disappear in subprocess but I am using ffmpeg-python and cannot control how subprocess is used unless I modify the source which I do not intend to. Is there anyway to make the terminal window disappear without modifying the source ?