Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (103)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Running FFMPEG commands inside Docker container with Python corrupts video

    15 novembre 2023, par AFortunato

    I have a Docker container running a Python web server. Somewhere in the server, I'm using
asyncio.create_subprocess_shell to run an FFMPEG command that trims and crops a video like :

    


    ffmpeg -ss {start} -to {end} -i {video_path} -vf "crop={width}:{height}:{x_offset}:{y_offset}" -c:a copy -crf 0 -preset ultrafast {output_file}


    


    Whenever I do this with a video with less than 1080p of resolution, everything works great. But if I use HD, 4k etc videos, whatever timestamps I put in start and end, I always get a 1 second video of the last second of the original video.

    


    I'm calling FFMPEG like this

    


    process = await asyncio.create_subprocess_shell(
            command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
        )


    


    I don't see any errors when running this AND the weird part is that, if I enter the container with&#xA;docker exec -it <container> sh</container>

    &#xA;

    And I run the exact same command in ffmpeg, it works perfectly.

    &#xA;

    I have no idea what the problem can be, can anyone help me ?

    &#xA;

  • Determine hardware acceleration support for a machine running libffmpeg via C++

    11 septembre 2023, par Space Bear

    I'm currently trying to find out how to query a Linux system to get find out if it support Hardware accelerated decoding of a specific video codec. (this is a multi codec application and this is part of choosing the best/fastest codec depending on the situation.)

    &#xA;

    My first inclination is to leverage FFMpeg as we already use it, specifically ff_find_hwaccel. However this is an internal function.

    &#xA;

    Second idea would be self implementation using av_hwaccel_next but this is deprecated.

    &#xA;

    Is there an upto date method to query ffmpeg to determine if a codec has hardware acceleration support on the machine it's running on ?

    &#xA;

  • FFMPEG convert video file from FLV to MP4. Its not running on browser

    9 janvier 2015, par Vikas Burman

    I am using FFMPEG for converting video file from FLV, AVI to mp4.
    FFMPEG is converting file properly on server. I have played that video, Its playing fine but its not running on browser while after converting file from local machine its playing fine on browser also.

    Local Machine : Ubuntu 12.04

    Server Machine : Centos

    Please Help me why this issue is happening.
    Thanks in advance :)