Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (54)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (7271)

  • When Kxmovie plays .rm format file, the audio does not work fine

    6 septembre 2016, par Bruce Jordan Wang

    I used third party video player KxMovie to play video in my app, the video streams fluently but the audio keeps on-and-off in a regular way, how to solve it ? What’s the possible reason for this problem ?

    Parameters about the .rm format video :

    parameters about the .rm format video

  • I need the script to work on all dav files

    4 décembre 2019, par audicom

    Script should run in recursive mode, find DAV files and start DAV to JPG conversions using FFMPEG. The script is working, identifying files in folders and starting conversions when DAV files exist, but is ignoring some DAV files.
    When I put these DAV files back in the folder it converts correctly.
    What could be wrong ?
    I thought it might be the speed of the process, since the files are being generated in the folder, the script must wait for the file to be closed and complete to act. I tried to delay the conversion process by 15 seconds using a PING, but it still skips some files.

    cd E:\VM01\1002
    MD "E:\COLETA SNAPSHOT\SNAPSHOT 1002"
    MD  "E:\COLETA SNAPSHOT\PROCESSED 1002"

    :LOOP01  
    PING 1.1.1.1 -n 10 -w 6000 >NUL    
    For /R %%G in (*.Dav) do IF NOT EXIST "%%G" GOTO SKIP01

    :LOOP02
    PING 1.1.1.1 -n 10 -w 6000 >NUL    
    For /R %%G in (*.Dav) do IF EXIST "%%G" GOTO SKIP02
    REM ALL THIS WILL BE DONE IF THE DAV FILE EXISTS
    :
    :
    :SKIP01
    REM 6 SECONDS OF DELAY ...
    PING 1.1.1.1 -n 10 -w 6000 >NUL
    GOTO LOOP01
    :
    :
    :SKIP02
    REM START CONVERSION
    PING 1.1.1.1  -n 10 -w 15000 >NUL
    For /R %%G in (*.Dav) do IF EXIST "%%G" ffmpeg -i "%%G" -r 0.2 -bt 20M -s 480x300 "%%~nG"%%06d.jpg
    for /r %%G in (*.Dav) do Move "%%G" "E:\COLETA SNAPSHOT\PROCESSED 1002"
    Move "*.jpg" "E:\COLETA SNAPSHOT\SNAPSHOT 1002"
    PING 1.1.1.1  -n 10 -w 3000 >NUL
    )
    GOTO LOOP01
  • ffmpeg -stream_loop doesnt work on hls file

    7 décembre 2022, par Enrique Corpus

    Can someone pls help me figure out my problem with ffmpeg. When I try to add -stream_loop option on the command, I got an error

    


    [AVIOContext @ 0x7f8c42705080] Statistics: 362088 bytes read, 0 seeks296.7kbits/s speed=1.01x Seek to start failed. playlist_main2.m3u8: Operation not permitted

    


    And here is my ffmpeg command
ffmpeg -stream_loop -1 -i playlist_main2.m3u8 -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 file.mp4

    


    Im thinking the problem might be on the .ts file, since I dont encounter this error when testing differet hls files, but I want to have a proof that the source is the proble. Pls help me. Attached is the m3u8 file and the .ts file.
HLS FILE

    


    Tried different hls file and the command works. Now im suspecting the problem is on the video (.ts) file itself but i cant prove it.