Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (92)

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

  • 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

Sur d’autres sites (12308)

  • Play the last minute of an mp3 file in Linux [closed]

    29 mai 2021, par Jörg

    I have got a number of audiobooks with play times beyond 30h. I noticed that a handful are corrupted towards the end. I have been trying to find ways to play only the last couple of minutes. ffplay -ss <seconds></seconds> doesn't seem to be able to do it since the files are too big.

    &#xA;

    I'm able to jump ahead to position 50000 but any higher value, such as 98000, and that ffplay gets stuck.

    &#xA;

    ffplay -ss 50000  bigfoo.mp3

    &#xA;

    Does anyone know a fix or an terminal based alternative ? I also had a look into Python but didn't find any relevant packages that can start playing in the middle of an audio file.

    &#xA;

  • Combining audio (.mp4) file and video (.webm) file to a new (.mp4) file using python [closed]

    3 mai 2020, par D. Damyanov

    How can I merge .webm video file and a .mp4 audio file to a new .mp4 audio/video file using python ? I tried to use the ffmpeg package for PyCharm but I am having troubles with finding the right documentation. On the official site https://ffmpeg.org/ I`ve found only instructions for usage in the terminal or cmd.

    &#xA;

  • Qt6.4.1 QProcess cannot call external program FFmpeg [closed]

    21 décembre 2022, par Xingchen

    Based on the official Qt example, slightly modified to call the external ffmpeg.exe for transcoding operations

    &#xA;

    QProcess *p = new QProcess(this);&#xA;QString program = "C:\\Users\\kyrio\\Documents\\Qt_Project\\build-test-Desktop_Qt_6_4_1_MinGW_64_bit-Debug\\debug";&#xA;QStringList arguments;&#xA;arguments &lt;&lt; "ffmpeg" &lt;&lt; "-i" &lt;&lt; "C:\\Users\\kyrio\\Videos\\222.mp4" &lt;&lt; "C:\\Users\\kyrio\\Videos\\223.mov";&#xA;p->start(program, arguments);&#xA;

    &#xA;

    Run no results, try a variety of writing methods also no results, get the output is empty, and no FFmpeg-related processes under the task manager
    &#xA;Try to call cmd, task manager can see the sub-processes under the new cmd.exe
    &#xA;command is fine, can be called in the terminal, but need to add ./or.
    &#xA;can be successfully run in the terminal

    &#xA;

    Try prefixing arguments with.\or.\or./, still no response
    &#xA;Tried to get the exact path to the ffmpeg.exe file in the program string, still no response
    &#xA;I want to be able to successfully call ffmpeg.exe to achieve the video transcoding needs

    &#xA;

    I have made the "program" exact to ffmpeg.exe and this is still unresponsive.No process, no errorString output.The output of exitCode is also absent.

    &#xA;

    QString program = "C:\\Users\\kyrio\\Documents\\Qt_Project\\build-test-Desktop_Qt_6_4_1_MinGW_64_bit-Debug\\debug\\ffmpeg.exe";&#xA;

    &#xA;

    Running results

    &#xA;

    I tried to start cmd and connected the errorOccurred signal, but there is no output, it is worth noting that the process cmd appears in the task manager
    &#xA;no output&#xA;task manager

    &#xA;